View Single Post
01-18-10, 09:05 AM   #63
xConStruct
A Chromatic Dragonspawn
 
xConStruct's Avatar
AddOn Author - Click to view addons
Join Date: May 2008
Posts: 199
@theiven:
Code:
    t:SetFilter(cB_Filters.fBank, true)
    t:SetFilter(cB_Filters.fBankFilter, true)
    t:setFilter(cB_Filters.fMining, true)     -- this is line #86
    cB_Bags.bankMining = t
Typo: You spelled the last function with a small 's' instead of a capital 'S'. That's also the cause of the error message.

@Quokka:
Code:
bankToggle:SetScript("OnClick", function(self)
    ToggleFrame(cB_Gnomed_Bank)
    ToggleFrame(cB_Gnomed_Bank-Gear)
    ToggleFrame(cB_Gnomed_Bank-Cons)
end)
You need to add the ToggleFrame-function before each bag frame.
__________________
« Website | GitHub »

Oh hai!
  Reply With Quote