Dest
Peon
Offline
Posts: 3.301
|
 |
« on: Thursday, October 21 2010, 10:08:22 » |
|
This bug is caused by tooltips it seems and it makes you freeze/crash everytime your cursor turns into a cogwell. Here is a workaround to fix this, aka disable tooltips.
Make two macros:
one to disable tooltips
/script GameTooltip.Temphide = function() GameTooltip:Hide() end; GameTooltip:SetScript("OnShow", GameTooltip.Temphide);
the other one to enable them as you need
/script GameTooltip:SetScript("OnShow", GameTooltip.Show);
This should prevent you from crashing, never had an issue since then.
|