tweaks: adjust two values -- help lines need at least 6 rows to be shown

Commit 931bf96c from four days ago incremented the minimum height.
master
Benno Schulenberg 2021-11-21 16:46:49 +01:00
parent 84f8445b7b
commit 8e7738e22e
2 changed files with 2 additions and 2 deletions

View File

@ -2717,7 +2717,7 @@ void do_linter(void)
return; return;
} }
if (helpless && LINES > 4) { if (helpless && LINES > 5) {
UNSET(NO_HELP); UNSET(NO_HELP);
window_init(); window_init();
} }

View File

@ -1687,7 +1687,7 @@ void wipe_statusbar(void)
/* Blank out the two help lines (when they are present). */ /* Blank out the two help lines (when they are present). */
void blank_bottombars(void) void blank_bottombars(void)
{ {
if (!ISSET(NO_HELP) && LINES > 4) { if (!ISSET(NO_HELP) && LINES > 5) {
blank_row(bottomwin, 1); blank_row(bottomwin, 1);
blank_row(bottomwin, 2); blank_row(bottomwin, 2);
} }