From 7946f207e261ce08f6acb06d96c2939062eceeed Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Tue, 8 Dec 1998 23:09:53 +0000 Subject: Help screen resizing nit. From Gero Treuner. --- help.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'help.c') 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); } -- cgit v1.2.3