Skip to content

Commit

Permalink
fix: keyboard issue with appearances sets tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Meivyn committed Nov 18, 2019
1 parent 04d056c commit 61a09c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MogAssistant.lua
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ local function DressUp(self, visualInfo)
end

local function OnKeyDown(self, key)
if WardrobeFrame_IsAtTransmogrifier() then return end
if WardrobeFrame_IsAtTransmogrifier() or _G.WardrobeCollectionFrame.selectedTab ~= 1 then return end
if key == WARDROBE_PREV_VISUAL_KEY or key == WARDROBE_NEXT_VISUAL_KEY or key == WARDROBE_UP_VISUAL_KEY or key == WARDROBE_DOWN_VISUAL_KEY then
self:SetPropagateKeyboardInput(false)
local visualIndex = 0
Expand Down

0 comments on commit 61a09c4

Please sign in to comment.