Tooltip missing
Kaimberex opened this issue ยท 13 comments
when hoving over items in BRP frame its met with a blank box. You can tell something is supposed to be there but its just a blank box. No other addons are loaded.
- What version are you using? 80100.47-Release
- Can the issue be reproduced, and if so, how? Yes, kill any boss that produces a bonus roll event
- If there was an error message, please include it.
- If there is a graphical issue, please include a screenshot (you can drag-n-drop here).
Make sure you check back often until the issue is resolved for any follow-up questions.
Unsure if it's related or not to this ticket (was going to open a new ticket but saw this one and thought I'd add my issue to it since it may be related), but this is what I'm getting now after killing a boss. I get the pull up listing the items dropped that are relevant to my character, but nothing shows in the tool tip and it looks like internal icons are all over the place in some instances. Thanks.
Unsure if it's related or not to this ticket (was going to open a new ticket but saw this one and thought I'd add my issue to it since it may be related), but this is what I'm getting now after killing a boss. I get the pull up listing the items dropped that are relevant to my character, but nothing shows in the tool tip and it looks like internal icons are all over the place in some instances. Thanks.
this was also my experience I even reset my complete interface and had only this addon loaded and no others and I was met with what you are seeing as well.
Any news on a fix for this issue? I see some replies from p3lim in some of the open cases but none are recent.
hi there, i've tried to fix this issue , though I'm not good at WOWUI/lua, but I surppose that the Compare dialog is frozen so that it may cause by anchor or something else...
I fixed it in file BonusRollPreview.xml, at 222 line, before the GameTooltip:SetHyperlink(self.itemLink), add the code below:
GameTooltip_SetDefaultAnchor(GameTooltip, UIParent)
code piece:
if(self.itemLink) then
GameTooltip:SetOwner(self, 'ANCHOR_NONE')
GameTooltip:ClearAllPoints()
GameTooltip:SetPoint('TOPRIGHT', self, 'TOPLEFT')
GameTooltip_SetDefaultAnchor(GameTooltip, UIParent)
GameTooltip:SetHyperlink(self.itemLink)
self:RegisterEvent('MODIFIER_STATE_CHANGED')
end
if it not work, please comment
I seems to work.I did world boss and i could see items normaly now.Since it seems you know what problem was can you take a quikl look at this other addon that has same issue?
anhility/BestInSlotRedux#55
Basicly when you check addon and try to look at items it shows same black square.I tried to input line when i thought it would be similary looking code but i didnt work .
Sorry for being unresponsive, a lot going on these days.
I've taken a look at the issue, but I'm unable to reproduce it myself.
The "fix" by @ztbsuper will reset the position of the tooltip entirely, appearing in the bottom-right position on the screen, which is not something we want.
What screen resolutions are you all using?
Sorry for being unresponsive, a lot going on these days.
I've taken a look at the issue, but I'm unable to reproduce it myself.
The "fix" by @ztbsuper will reset the position of the tooltip entirely, appearing in the bottom-right position on the screen, which is not something we want.What screen resolutions are you all using?
1920*1080
Full screen(window model)
hi there, i've tried to fix this issue , though I'm not good at WOWUI/lua, but I surppose that the Compare dialog is frozen so that it may cause by anchor or something else...
I fixed it in file BonusRollPreview.xml, at 222 line, before the GameTooltip:SetHyperlink(self.itemLink), add the code below:
GameTooltip_SetDefaultAnchor(GameTooltip, UIParent)code piece:
if(self.itemLink) then GameTooltip:SetOwner(self, 'ANCHOR_NONE') GameTooltip:ClearAllPoints() GameTooltip:SetPoint('TOPRIGHT', self, 'TOPLEFT') GameTooltip_SetDefaultAnchor(GameTooltip, UIParent) GameTooltip:SetHyperlink(self.itemLink) self:RegisterEvent('MODIFIER_STATE_CHANGED') endif it not work, please comment
The problem has not been resolved.
I've found the issue, it's something with the compare tooltips, I'll wager some, if not all of you have "always compare" turned on. You can check with this:
/dump GetCVarBool('alwaysCompareItems')
Now I know what the issue is, should be easy to fix.