Tooltip error
Cazzbr opened this issue ยท 2 comments
when I open the World map with the World quests tab open, this tooltip appears. As far I could track Its related to the item comparison feature cuz It's only shows after I mouse over a world quest on the list the awards an item.
I appears on every map updated, when I switch zones or open the map, desappears when I mouse over element.
Looks like this happens when you have the alwaysCompareItems CVar set to 1.
I found the culprit and a way to fix it.
However, as the CVar isn't available in the official settings of the game, I see it as a minor issue.
This means I'll wait with releasing an update with the fix to either combine it with other issues, or I'll push it somewhere next week. Simply to not shower people with updates.
If, however, you know your way around addons and would like to have this issue fixed now, you can do the following:
In the addon folder open WorldQuestTab.xml
On line 746 you will find
<GameTooltip name="WQT_Tooltip" frameStrata="TOOLTIP" hidden="true" parent="WorldMapFrame" inherits="GameTooltipTemplate">
replace this with
<GameTooltip name="WQT_CompareTooltip1" clampedToScreen="true" frameStrata="TOOLTIP" hidden="true" parent="WorldMapFrame" inherits="ShoppingTooltipTemplate"/>
<GameTooltip name="WQT_CompareTooltip2" clampedToScreen="true" frameStrata="TOOLTIP" hidden="true" parent="WorldMapFrame" inherits="ShoppingTooltipTemplate"/>
<GameTooltip name="WQT_Tooltip" frameStrata="TOOLTIP" hidden="true" parent="WorldMapFrame" inherits="GameTooltipTemplate">
And on line 760 (after the previous change), replace
self.Tooltip.shoppingTooltips = { WorldMapCompareTooltip1, WorldMapCompareTooltip2 };
with
self.Tooltip.shoppingTooltips = { WQT_CompareTooltip1, WQT_CompareTooltip2 };
Then simply save the file, reload your UI, and the issue should be fixed.