From 9921cbcef898a451229201a954f7a2c6a59de020 Mon Sep 17 00:00:00 2001 From: Anch Date: Sat, 17 Dec 2022 01:32:26 +1300 Subject: [PATCH] bug fix changed and reenabled row:SetFrameStrata("HIGH") --- AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua index bddfe55..ae6127c 100644 --- a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua +++ b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua @@ -560,7 +560,7 @@ scrollFrame.scrollBar = scrollSlider local rows = setmetatable({}, { __index = function(t, i) local row = CreateFrame("CheckButton", "$parentRow"..i, Atlasloot_Difficulty_ScrollFrame) row:SetSize(230, ROW_HEIGHT); - --row:SetFrameStrata("Dialog"); + row:SetFrameStrata("HIGH"); row:SetNormalFontObject(GameFontHighlightLeft); row:SetCheckedTexture("Interface\\QuestFrame\\UI-QuestTitleHighlight", "ADD"); row:SetScript("OnClick", function() @@ -575,7 +575,7 @@ local rows = setmetatable({}, { __index = function(t, i) end AtlasLoot:ScrollFrameUpdate(); end - + end) if i == 1 then row:SetPoint("TOPLEFT", scrollFrame, 8, -8) @@ -654,7 +654,7 @@ local scrollSlider2 = CreateFrame("ScrollFrame","AtlasLootDefaultFrameSubTableSc local rows2 = setmetatable({}, { __index = function(t, i) local row = CreateFrame("CheckButton", "$parentRow"..i, Atlasloot_SubTableFrame) row:SetSize(230, ROW_HEIGHT); - --row:SetFrameStrata("Dialog"); + row:SetFrameStrata("HIGH"); row:SetNormalFontObject(GameFontHighlightLeft); row:SetCheckedTexture("Interface\\QuestFrame\\UI-QuestTitleHighlight", "ADD"); row.Text = row:CreateFontString("$parentRow"..i.."Text","OVERLAY","GameFontNormal");