View Single Post
03-13-19, 12:32 AM   #7
gmarco
An Onyxian Warder
 
gmarco's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 362
Hi again,

I need help again trying to understand an error that I got because I am unable to find why it happens.

I got this when I am in combat and something changes in the ObjectiveTracker:

Lua Code:
  1. 1x [ADDON_ACTION_BLOCKED] AddOn 'gmSimpleUI' tried to call the protected function 'VerticalMultiBarsContainer:SetSize()'.
  2. !BugGrabber\BugGrabber.lua:519: in function <!BugGrabber\BugGrabber.lua:519>
  3. [C]: in function `SetSize'
  4. FrameXML\MultiActionBars.lua:89: in function `MultiActionBar_Update'
  5. FrameXML\ActionBarController.lua:169: in function `ValidateActionBarTransition'
  6. FrameXML\ActionBarController.lua:137: in function `ActionBarController_UpdateAll'
  7. FrameXML\ActionBarController.lua:62: in function <FrameXML\ActionBarController.lua:51>
  8.  
  9. Locals:
  10. InCombatSkipped

But I don't use:

VerticalMultiBarsContainer:SetSize()

in any place.

I use only:
Lua Code:
  1. MultiBarRight:SetScale(0.8)
  2. MultiBarRight.SetScale = function() end
  3.  
  4. MultiBarLeft:SetScale(0.8)
  5. MultiBarLeft.SetScale = function() end

as Fizzlemizz suggests and it works great.

I think the error is related to the anchor and combat ... but I was unable to fix it.

Any Help ?
Thanks
__________________
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
  Reply With Quote