From 549eab7f2ce96d8b1c80b922515b3ae3c3914fc8 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Thu, 26 Jan 2023 10:16:45 -0600 Subject: config: remove unused field "RenderAccountTabs" Remove unused "RenderAccountTabs" field from config. This field is not used anywhere in the codebase and does not appear anywhere in the docs nor default configs. Signed-off-by: Tim Culverhouse Acked-by: Robin Jarry --- config/ui.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/ui.go b/config/ui.go index 1b4c35fb..752296a3 100644 --- a/config/ui.go +++ b/config/ui.go @@ -31,7 +31,6 @@ type UIConfig struct { MessageViewThisDayTimeFormat string `ini:"message-view-this-day-time-format"` MessageViewThisWeekTimeFormat string `ini:"message-view-this-week-time-format"` MessageViewThisYearTimeFormat string `ini:"message-view-this-year-time-format"` - RenderAccountTabs string `ini:"render-account-tabs"` PinnedTabMarker string `ini:"pinned-tab-marker"` SidebarWidth int `ini:"sidebar-width"` PreviewHeight int `ini:"preview-height"` @@ -140,7 +139,6 @@ func defaultUiConfig() *UIConfig { ThisDayTimeFormat: "", ThisWeekTimeFormat: "", ThisYearTimeFormat: "", - RenderAccountTabs: "auto", PinnedTabMarker: "`", SidebarWidth: 20, PreviewHeight: 12, -- cgit