View Single Post
02-28-20, 05:30 PM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,877
Various attributes of the GameTooltip can change each time it is shown although the scale is unlikely to be one of them.

Try hooking it's OnShow script

Code:
GameTooltip:HookScript("OnShow", function(self) self:SetAlpha(0.5) end)
It might depend on what other addons effecting tooltips you have installed.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 02-28-20 at 05:35 PM.
  Reply With Quote