debug: Add prints to UpdateSettings

This commit is contained in:
Xurkon
2026-04-02 19:17:52 -05:00
parent cf462d9a9f
commit 882cd01628
+3
View File
@@ -794,8 +794,11 @@ function QuestieArrow:ApplyAlpha()
end end
function QuestieArrow:UpdateSettings() function QuestieArrow:UpdateSettings()
print("UpdateSettings called, arrowFrame=" .. tostring(arrowFrame))
EnsureArrowFrame() EnsureArrowFrame()
print("After EnsureArrowFrame, arrowFrame=" .. tostring(arrowFrame))
if arrowFrame then if arrowFrame then
print("Setting scale to " .. tostring(_GetArrowScale()))
arrowFrame:SetScale(_GetArrowScale()) arrowFrame:SetScale(_GetArrowScale())
arrowFrame:SetAlpha(_GetArrowAlpha()) arrowFrame:SetAlpha(_GetArrowAlpha())
end end