fix: Add UpdateSettings function to apply scale/alpha without touching visibility

This commit is contained in:
Xurkon
2026-04-02 19:04:20 -05:00
parent ef61faa9f9
commit a1f273bba5
2 changed files with 28 additions and 3 deletions
+8
View File
@@ -793,6 +793,14 @@ function QuestieArrow:ApplyAlpha()
end
end
function QuestieArrow:UpdateSettings()
EnsureArrowFrame()
if arrowFrame then
arrowFrame:SetScale(_GetArrowScale())
arrowFrame:SetAlpha(_GetArrowAlpha())
end
end
function QuestieArrow:Initialize()
EnsureArrowFrame()