View Single Post
08/20/15, 10:16 AM   #6
Lodur
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 108
From zo_keybindstrip.lua:
Code:
function ZO_KeybindStrip:AddKeybindButton(keybindButtonDescriptor)
    -- Asserting here usually means that a key is already bound (typically because someone forgot to remove a keybinding).
    assert(self.keybinds[keybindButtonDescriptor.keybind] == nil)
So look for an addon that adds a keybind that the Mail InBox already uses maybe.

Or an Addon that adds a key bind to the Inbox and does not remove it so this asserts the second time you open the Inbox?
  Reply With Quote