Skip to content

Commit

Permalink
move to keypress handling code
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightblade committed Sep 22, 2024
1 parent e420143 commit a1058e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/Classes/Item.lua
Original file line number Diff line number Diff line change
Expand Up @@ -298,10 +298,6 @@ function ItemClass:ParseRaw(raw, rarity, highQuality)
self.rawLines = { }
-- Find non-blank lines and trim whitespace
for line in raw:gmatch("%s*([^\n]*%S)") do
if not main.seenAdvIDWarn and line:match("^{ ") then
main:OpenMessagePopup("Warning", "\"Advanced Item Descriptions\" (Ctrl+Alt+c) are currently unsupported.\n\nPlease try again using Ctrl+c only.")
main.seenAdvIDWarn = true
end
t_insert(self.rawLines, line)
end
local mode = rarity and "GAME" or "WIKI"
Expand Down
5 changes: 5 additions & 0 deletions src/Classes/ItemsTab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1170,6 +1170,11 @@ function ItemsTabClass:Draw(viewPort, inputEvents)
if event.type == "KeyDown" then
if event.key == "v" and IsKeyDown("CTRL") then
local newItem = Paste()
if newItem:find("{ ", 0, true) then
main:OpenConfirmPopup("Warning", "\"Advanced Item Descriptions\" (Ctrl+Alt+c) are unsupported.\n\nAbort paste?", "OK", function()
self:SetDisplayItem()
end)
end
if newItem then
self:CreateDisplayItemFromRaw(newItem, true)
end
Expand Down

0 comments on commit a1058e6

Please sign in to comment.