diff --git a/Bagnon/components/frame.lua b/Bagnon/components/frame.lua index eb3b103..14aa6cb 100644 --- a/Bagnon/components/frame.lua +++ b/Bagnon/components/frame.lua @@ -846,7 +846,11 @@ function Frame:PlaceSortBtn() if self:HasSortBtn() then local toggle = self:GetSortBtn() or self:CreateSortBtn() toggle:ClearAllPoints() - toggle:SetPoint('TOPRIGHT', self, 'TOPRIGHT', -58, -8) + if self:HasOptionsToggle() then + toggle:SetPoint('TOPRIGHT', self, 'TOPRIGHT', -57, -8) + else + toggle:SetPoint('TOPRIGHT', self, 'TOPRIGHT', -32, -8) + end toggle:Show() return toggle:GetWidth(), toggle:GetHeight()