From e94e9ed5364235b3d953f43e730754316bbc0d14 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sun, 29 Jun 2025 13:50:43 +0200 Subject: [PATCH] Click "OK " after configuring colors --- Channeler.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Channeler.lua b/Channeler.lua index 803392a..be3f1c1 100644 --- a/Channeler.lua +++ b/Channeler.lua @@ -191,6 +191,15 @@ local function ConfigureColor() classColorButton:Click() end end + + local okButton = _G["ChatConfigFrameOkayButton"] + if okButton == nil then + print("[Channeler] Ok button not found") + return + end + print(string.format("[Channeler] Clicking on %s", okButton:GetText())) + okButton:Click() + print("[Channeler] Colors configured") end