frozn / TipTac

WoW AddOn TipTac Reborn
GNU General Public License v3.0
118 stars 25 forks source link

Request: Option to "Hide Experience/Reputation Bar" #324

Closed F-Lambda closed 3 months ago

F-Lambda commented 3 months ago

Is your feature request related to a problem? Please describe.

TipTac has the option to hide various tooltips in and out of combat, including Action Bar tooltips. However, while action bar tooltips can be hidden, the tooltips for the experience/reputation bar directly beneath cannot be hidden. It would be nice if it could be hidden as well.

Additional context

image

frozn commented 3 months ago

This feature will be included in the next release. 👍

But this options will only be available in Classic Era and Cataclysm Classic, because here I can determine these kind of tips by checking the tip's owner, in this case the frame MainMenuExpBar. In Retail (The War Within) this isn't possible, because the owner of the status bar tooltips is the general frame UIParent, so that I can't determine if the tip comes from a status bar or not.

frozn commented 3 months ago

Figured out a way to implement this also for retail: During checking, if the tip needs to be hidden, I check the frame the mouse is currently hovering over. If this is the frame MainStatusTrackingBarContainer, then this tip is one from the status bar.