From 9776ea3bd9fb9499cd48f546233bfc06959b7949 Mon Sep 17 00:00:00 2001 From: funkydude Date: Mon, 15 Jan 2024 21:22:31 +0000 Subject: [PATCH] Make sure the 10.2.5 color widget isn't click through --- AceGUI-3.0/widgets/AceGUIWidget-ColorPicker.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/AceGUI-3.0/widgets/AceGUIWidget-ColorPicker.lua b/AceGUI-3.0/widgets/AceGUIWidget-ColorPicker.lua index 973cec7..89ef4d6 100644 --- a/AceGUI-3.0/widgets/AceGUIWidget-ColorPicker.lua +++ b/AceGUI-3.0/widgets/AceGUIWidget-ColorPicker.lua @@ -53,6 +53,7 @@ local function ColorSwatch_OnClick(frame) ColorPickerFrame:SetFrameStrata("FULLSCREEN_DIALOG") ColorPickerFrame:SetFrameLevel(frame:GetFrameLevel() + 10) ColorPickerFrame:SetClampedToScreen(true) + ColorPickerFrame:EnableMouse(true) -- Make sure the background isn't click-through if ColorPickerFrame.SetupColorPickerAndShow then -- 10.2.5 color picker overhaul local r2, g2, b2, a2 = self.r, self.g, self.b, self.a