Click "OK " after configuring colors

This commit is contained in:
2025-06-29 13:50:43 +02:00
parent 1d26dec51c
commit e94e9ed536

View File

@@ -191,6 +191,15 @@ local function ConfigureColor()
classColorButton:Click() classColorButton:Click()
end end
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") print("[Channeler] Colors configured")
end end