fix: Arrow scale and position reset not working

This commit is contained in:
Xurkon
2026-04-02 18:25:44 -05:00
parent 67255ca5fb
commit 6a67189a4c
2 changed files with 22 additions and 4 deletions
@@ -104,9 +104,8 @@ function QuestieOptions.tabs.arrow:Initialize()
name = function() return l10n("Reset Arrow Position") end,
desc = function() return l10n("Reset the arrow position to the center of the screen") end,
func = function()
Questie.db.profile.arrowPosition = nil
if QuestieArrow and QuestieArrow.Refresh then
QuestieArrow:Refresh()
if QuestieArrow and QuestieArrow.ResetPosition then
QuestieArrow:ResetPosition()
end
end,
},