View Single Post
03/30/15, 10:36 PM   #3
circonian
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 613
There may be a way to avoid the problem entirely, but this would be a simple fix.

Just handle those keys that aren't working yourself:
Lua Code:
  1. local function FCOGuildBankQuickSelect_HandleKeyboardEvents(self, key, hide)
  2. ...
  3. elseif key == KEY_E then
  4.     ZO_SelectGuildBankDialogAccept:callback()
  5. elseif key == KEY_ALT then
  6.     ZO_SelectGuildBankDialogCancel:callback()
  7. end

Last edited by circonian : 03/30/15 at 10:39 PM.
  Reply With Quote