#2 - Oct. 20, 2010, 1:30 a.m.
Q u o t e:
Is there any fixes for this coming soon? I would love to stop disconnecting every time I mouse over something that gives the cog icon...
Our Developers and Quality Assurance teams are still looking into this issue and hope to implement a resolution as soon as possible. In the meantime though there is a work around that seems to be working for a lot of players.
You'll need to create two macros, one to turn tooltips off and one on. You'll want to turn off your tooltips if you are going into an instance such as the Headless Horseman event or a Battleground, anywhere that you deal with a cogwheel icon.
Turn Off Tooltips
/script GameTooltip.Temphide = function() GameTooltip:Hide() end; GameTooltip:SetScript("OnShow", GameTooltip.Temphide);
Turn On Tooltips
/script GameTooltip:SetScript("OnShow", GameTooltip.Show);