View Single Post
07-25-22, 10:17 AM   #4
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,877
You could do something like:
Lua Code:
  1. local function SizeName(self)
  2.     local font, size = self.name:GetFont()
  3.     self.name:SetFont(font, size-2)
  4. end
  5. SizeName(PlayerFrame)
  6. SizeName(TargetFrame)
  7. for i=1, 4 do
  8.     SizeName(_G["PartyMemberFrame"..i])
  9. end

Add additional unit frames to size. Adjust the size to your liking.

You can play with the naming and turn it into a macro or copy/paste to addon.bool.no to create/download as a small addon that will run when you log in.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 07-25-22 at 10:20 AM.
  Reply With Quote