From 11cc0e9a79301c6a9fd4949b32297d6c2c6bd805 Mon Sep 17 00:00:00 2001 From: Xurkon Date: Thu, 2 Apr 2026 19:36:52 -0500 Subject: [PATCH] debug: Add print to UpdateFont --- Modules/Arrow/QuestieArrow.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Modules/Arrow/QuestieArrow.lua b/Modules/Arrow/QuestieArrow.lua index 963ba21..d9a6e71 100644 --- a/Modules/Arrow/QuestieArrow.lua +++ b/Modules/Arrow/QuestieArrow.lua @@ -803,13 +803,16 @@ function QuestieArrow:UpdateSettings() end function QuestieArrow:UpdateFont() + print("UpdateFont called, arrowFrame=" .. tostring(arrowFrame) .. " title=" .. tostring(arrowFrame and arrowFrame.title)) if not arrowFrame then return end local fontSize = Questie.db.profile.arrowFontSize or 10 local fontFace = Questie.db.profile.arrowFont or QuestieFont:GetFont() if arrowFrame.title then + print("Setting title font to " .. tostring(fontFace) .. " size " .. fontSize) arrowFrame.title:SetFont(fontFace, fontSize, "OUTLINE") end if arrowFrame.distance then + print("Setting distance font to " .. tostring(fontFace) .. " size " .. (fontSize - 2)) arrowFrame.distance:SetFont(fontFace, fontSize - 2, "OUTLINE") end end