From 81842487b58907bafefaa6d387d882b4545c8bff Mon Sep 17 00:00:00 2001 From: Matthew Rodrigues Date: Tue, 20 Feb 2024 05:37:21 +0000 Subject: [PATCH] feat: changed TOPLEVEL to DIALOG frame strata (#8) This was made because someone was looking for and not only that but within Bagnon when changing the frame layer there's "HIGH" and "TOPLEVEL", and both of them were doing the same thing --- Bagnon/components/frame.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bagnon/components/frame.lua b/Bagnon/components/frame.lua index 14aa6cb..4ed3816 100644 --- a/Bagnon/components/frame.lua +++ b/Bagnon/components/frame.lua @@ -390,7 +390,7 @@ function Frame:SetFrameLayer(layer) local strata, topLevel = nil, false if layer == 'TOPLEVEL' then - strata = 'HIGH' + strata = 'DIALOG' topLevel = true elseif layer == 'MEDIUMLOW' then strata = 'LOW'