I can't get over 10 man raids run by one person.........:P You guys impress the hell out of me.
Bloodcloud, glad things are working out ok for you. I opted not to add the hiding of the tooltip because it's such an integral feature for the intended use of Hermes that it seems self defeating. BUT, that doesn't mean I don't understand why you want the behavior changed.
If you're at all comfortable with Lua it's real easy to comment out some code yourself. Open up Display.lua and locate line 1385 (in Release 1.0):
Change this:
Code:
function OnButtonEnter(button, mousebutton)
if(not button:IsDragging()) then --don't show the tooltip if we're dragging
HermesDisplay:ShowTooltip(button, button)
end
end
To this (add two dashes):
Code:
function OnButtonEnter(button, mousebutton)
if(not button:IsDragging()) then --don't show the tooltip if we're dragging
--HermesDisplay:ShowTooltip(button, button)
end
end
Connect With Us