fix: Apply scale and alpha immediately via dedicated functions
This commit is contained in:
@@ -770,7 +770,8 @@ end
|
||||
|
||||
function QuestieArrow:ResetPosition()
|
||||
Questie.db.profile.arrowPosition = nil
|
||||
-- Reset to default center position
|
||||
-- Ensure frame exists, then reset to default center position
|
||||
EnsureArrowFrame()
|
||||
if arrowFrame then
|
||||
arrowFrame:ClearAllPoints()
|
||||
arrowFrame:SetPoint("CENTER", UIParent, "CENTER", 0, -100)
|
||||
@@ -778,6 +779,20 @@ function QuestieArrow:ResetPosition()
|
||||
end
|
||||
end
|
||||
|
||||
function QuestieArrow:ApplyScale()
|
||||
EnsureArrowFrame()
|
||||
if arrowFrame then
|
||||
arrowFrame:SetScale(_GetArrowScale())
|
||||
end
|
||||
end
|
||||
|
||||
function QuestieArrow:ApplyAlpha()
|
||||
EnsureArrowFrame()
|
||||
if arrowFrame then
|
||||
arrowFrame:SetAlpha(_GetArrowAlpha())
|
||||
end
|
||||
end
|
||||
|
||||
function QuestieArrow:Initialize()
|
||||
EnsureArrowFrame()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user