From a9f4a97979cb7e930a83621612e69211dac9d049 Mon Sep 17 00:00:00 2001 From: Xurkon Date: Thu, 2 Apr 2026 19:45:17 -0500 Subject: [PATCH] cleanup: Remove debug prints and duplicate spacer --- Modules/Arrow/QuestieArrow.lua | 1 - Modules/Options/ArrowTab/QuestieOptionsArrow.lua | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Modules/Arrow/QuestieArrow.lua b/Modules/Arrow/QuestieArrow.lua index 06c575a..88d0e3a 100644 --- a/Modules/Arrow/QuestieArrow.lua +++ b/Modules/Arrow/QuestieArrow.lua @@ -808,7 +808,6 @@ function QuestieArrow:UpdateFont() local fontSize = Questie.db.profile.arrowFontSize or 10 local fontName = Questie.db.profile.arrowFont or "Friz Quadrata TT" local fontFace = SharedMedia:Fetch("font", fontName) or fontName - print("UpdateFont: fontName=" .. tostring(fontName) .. " fontFace=" .. tostring(fontFace)) if arrowFrame.title then arrowFrame.title:SetFont(fontFace, fontSize, "OUTLINE") end diff --git a/Modules/Options/ArrowTab/QuestieOptionsArrow.lua b/Modules/Options/ArrowTab/QuestieOptionsArrow.lua index 5036c05..2ce061d 100644 --- a/Modules/Options/ArrowTab/QuestieOptionsArrow.lua +++ b/Modules/Options/ArrowTab/QuestieOptionsArrow.lua @@ -91,7 +91,6 @@ function QuestieOptions.tabs.arrow:Initialize() desc = function() return l10n("The font used for the arrow distance and title text.") end, get = function() return Questie.db.profile.arrowFont or "Friz Quadrata TT" end, set = function(_, value) - print("Arrow Font set to: " .. tostring(value) .. " type: " .. type(value)) Questie.db.profile.arrowFont = value if QuestieArrow and QuestieArrow.UpdateFont then QuestieArrow:UpdateFont() @@ -115,7 +114,7 @@ function QuestieOptions.tabs.arrow:Initialize() end end, }, - arrow_spacer_2 = QuestieOptionsUtils:Spacer(6), + arrow_spacer_3 = QuestieOptionsUtils:Spacer(8), autoTrackQuests = { type = "toggle", order = 7,