Hi all,
Been using elvui for a little while and enjoy using .53 scale at 2k, although lately been getting some fps issues from elvui, dissapear when not using elvui,
Is there a way or an addon i can set the ui scale below .65? its just to big at 2k
Thanks
1 Like
Should also note using ui scale only makes it bigger not smaller.
Edit: forgot phone is on a different toon for reply.
In order to set it below 0.64, you’ll need an addon. (The command to set it lower doesn’t save between sessions.)
Here’s a post that should help you create your own mini-addon for it:
If that’s all you want to do, you could:
try
/run SetCVar("uiScale", 0.5)
I’m not sure if it’s per character or sticky at that scale.
Otherwise, paste the following into the website addon.bool.no to create/download a small addon that will run the script automatically each time a character logs in.
local f = CreateFrame("Frame")
f:SetScript("OnEvent", function()
UIParent:SetScale(0.5)
end)
f:RegisterEvent("PLAYER_LOGIN")
3 Likes
Thankyou, much appreciated, will give it a try.
Thankyou, this worked perfectly. exactly what i wanted