Thread: MultiBar Scale
View Single Post
07-29-18, 08:32 AM   #2
siweia
A Flamescale Wyrmkin
 
siweia's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2011
Posts: 126
Code:
hooksecurefunc(MultiBarRight, "SetScale", function(self, scale)
	if scale < 1 then self:SetScale(1) end
end)

hooksecurefunc(MultiBarLeft, "SetScale", function(self, scale)
	if scale < 1 then self:SetScale(1) end
end)
With the code, the multibars would only scale themselves by the value of your UIScale.

Last edited by siweia : 07-29-18 at 08:35 AM.
  Reply With Quote