From 63041aca08fc2df8792cd2c29b25affe4b2d59c0 Mon Sep 17 00:00:00 2001 From: "vjekoslav.krenek@gmail.com" <313787825+svart2521@users.noreply.github.com> Date: Tue, 15 Sep 2026 23:28:01 +0200 Subject: [PATCH] Chat: fix inverted requirement in Align Tabs to Full Panel tooltip Bug: The disabled tooltip for "Align Tabs to Full Panel" said the option requires "Tabs Inside Chat Panel" to be enabled, when the option is actually disabled while that setting IS enabled -- the wrapper's default verb is "enabled", so the sentence stated the opposite of the real requirement. Issue: Reported as: tooltip says the option requires Tabs Inside Chat Panel to be enabled, but disabling Tabs Inside Chat Panel is what enables Align Tabs to Full Panel. Fix: Return the full corrected sentence ("...to be disabled") for that branch, matching the same requireState-mismatch fix already applied elsewhere in this file (Sync Border with Chat Panel). --- EllesmereUIOptions/EUI_Chat_Options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EllesmereUIOptions/EUI_Chat_Options.lua b/EllesmereUIOptions/EUI_Chat_Options.lua index 1caa5d232..e971e1de2 100644 --- a/EllesmereUIOptions/EUI_Chat_Options.lua +++ b/EllesmereUIOptions/EUI_Chat_Options.lua @@ -761,7 +761,7 @@ initFrame:SetScript("OnEvent", function(self) or (Cfg("sidebarVisibility") or "always") == "never" end, disabledTooltip=function() - if Cfg("extendBgBehindTabs") then return "Tabs Inside Chat Panel" end + if Cfg("extendBgBehindTabs") then return "This option requires Tabs Inside Chat Panel to be disabled" end return "Sidebar Visibility" end, getValue=function() return Cfg("alignTabsToPanel") or false end,