summaryrefslogtreecommitdiffstats
path: root/help.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-12-08 23:09:53 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-12-08 23:09:53 +0000
commit7946f207e261ce08f6acb06d96c2939062eceeed (patch)
tree1c6c036a90d48475441d2a56f680012af9efd5f3 /help.c
parente824b0ec19a2ba424fc28c3c4376065af1f0ecf9 (diff)
Help screen resizing nit. From Gero Treuner.
Diffstat (limited to 'help.c')
-rw-r--r--help.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/help.c b/help.c
index eaedf7b0..9bf3df56 100644
--- a/help.c
+++ b/help.c
@@ -174,8 +174,8 @@ static void format_line (FILE *f, int ismacro,
}
else
{
- col_a = 12 + (COLS > 83 ? (COLS - 80) >> 2 : 0);
- col_b = 19 + (COLS > 43 ? (COLS - 16) >> 2 : 0);
+ col_a = COLS > 83 ? (COLS - 32) >> 2 : 12;
+ col_b = COLS > 49 ? (COLS - 10) >> 1 : 19;
col = pad (f, mutt_strlen(t1), col_a);
}