summaryrefslogtreecommitdiffstats
path: root/help.c
diff options
context:
space:
mode:
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);
}