View Single Post
04/22/14, 12:44 PM   #9
Wykkyd
Are you Wykkyd Gaming?
 
Wykkyd's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 107
With nothing to go on, and stuck at work, I poked around a bit.

ZO_ReticleContainerInteract:SetAnchor(CENTER, ZO_ReticleContainer, CENTER, 35, 250)

^ that is line 1086 of ReticleSettings.lua
That could cause issues if any other addon touches Reticle, because it doesn't first :ClearAnchors()

It also isn't checking to see if the Reticle has the expected anchor before modifying it, which means 2 addons could fight over re-positioning it.

I'll dig more when I get home but I don't use any of the other addons you listed and there are far too many addons for me to test Framework against all of them.

Also this from ZrMM seems like it would cause this very issue:

Line 1005: ctrl:ClearAnchors()
Line 1006: ctrl:SetAnchor(point, ctrlTo, relativePoint)
Line 1007: ctrl:SetAnchor(point, ctrlTo, relativePoint)

Last edited by Wykkyd : 04/22/14 at 12:51 PM.
  Reply With Quote