summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorHubert Hirtz <hubert@hirtz.pm>2021-09-01 13:03:26 +0200
committerHubert Hirtz <hubert@hirtz.pm>2021-09-01 13:03:26 +0200
commit328a23e10f35bea78df63fe46041d581d89fe79d (patch)
treeea604a1da4ac39cf5b94464c8faf7fc5e607dede /config.go
parentChannel list is horizontal by default (diff)
Don't show the member list by default
Diffstat (limited to 'config.go')
-rw-r--r--config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.go b/config.go
index 9186590..2b05e07 100644
--- a/config.go
+++ b/config.go
@@ -94,8 +94,8 @@ func ParseConfig(buf []byte) (cfg Config, err error) {
if cfg.ChanColWidth < 0 {
cfg.ChanColWidth = 0
}
- if cfg.MemberColWidth <= 0 {
- cfg.MemberColWidth = 16
+ if cfg.MemberColWidth < 0 {
+ cfg.MemberColWidth = 0
}
return
}