From 7add74dbbe820487e3e95c595889a2a6ac079676 Mon Sep 17 00:00:00 2001 From: JonKazama-Hellion Date: Sat, 2 May 2026 13:56:10 +0200 Subject: [PATCH] feat(auto-tell-tabs): enable sidebar tab view by default for fresh installs --- ChatTwo/Configuration.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ChatTwo/Configuration.cs b/ChatTwo/Configuration.cs index 6b05665..042abcf 100755 --- a/ChatTwo/Configuration.cs +++ b/ChatTwo/Configuration.cs @@ -127,7 +127,12 @@ public class Configuration : IPluginConfiguration public bool MoreCompactPretty; public bool HideSameTimestamps; public bool ShowNoviceNetwork; - public bool SidebarTabView; + // Hellion Chat — vertical sidebar tab layout reads better than the + // horizontal tab strip in the company of Auto-Tell-Tabs (a club + // greeter typically tracks 5–15 simultaneous conversations). Bestand + // users keep their saved value untouched — only fresh installs pick + // up the new default. + public bool SidebarTabView = true; public bool PrintChangelog = true; public bool OnlyPreviewIf; public int PreviewMinimum = 1;