From 5bbbcc7b5dbe4ef94bedd95599bffc941c82776a Mon Sep 17 00:00:00 2001 From: Narcasung Date: Wed, 8 Jul 2026 00:44:43 +0200 Subject: [PATCH] Equalize class header top/bottom spacing on Classes tab Both margins were mismatched (4px top, 34px bottom); set to 19px each for a balanced header. --- Options.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Options.lua b/Options.lua index eee7a80..e5a3fa3 100644 --- a/Options.lua +++ b/Options.lua @@ -102,8 +102,8 @@ classContent:SetPoint("TOPLEFT", contentBox, "TOPLEFT", 12, -4) classContent:SetPoint("BOTTOMRIGHT", contentBox, "BOTTOMRIGHT", -12, 4) local classLabelHeader = CreateFrame("Frame", nil, classContent) -classLabelHeader:SetPoint("TOPLEFT", classContent, "TOPLEFT", 0, -4) -classLabelHeader:SetPoint("TOPRIGHT", classContent, "TOPRIGHT", 0, -4) +classLabelHeader:SetPoint("TOPLEFT", classContent, "TOPLEFT", 0, -19) +classLabelHeader:SetPoint("TOPRIGHT", classContent, "TOPRIGHT", 0, -19) classLabelHeader:SetHeight(18) local classLabel = classLabelHeader:CreateFontString(nil, "ARTWORK", "GameFontNormalLarge") @@ -135,7 +135,7 @@ local checks = {} local selectedClass = nil local previousAnchor = classLabelHeader -local previousSpacing = -34 +local previousSpacing = -19 local previousXOffset = 16 for _, frameName in ipairs(HideCoA.FRAMES) do