aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Culverhouse <tim@timculverhouse.com>2023-01-26 10:16:45 -0600
committerRobin Jarry <robin@jarry.cc>2023-01-29 21:47:16 +0100
commit549eab7f2ce96d8b1c80b922515b3ae3c3914fc8 (patch)
treec6ec7faf62280a90cae558e37749597c2563199a
parenta0bd1fcf786ca9156cf3b8837e0820e8b603bae3 (diff)
downloadaerc-549eab7f2ce96d8b1c80b922515b3ae3c3914fc8.tar.gz
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 <tim@timculverhouse.com> Acked-by: Robin Jarry <robin@jarry.cc>
-rw-r--r--config/ui.go2
1 files changed, 0 insertions, 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,