summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
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
}