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
parent
84f8445b7b
commit
8e7738e22e
|
@ -2717,7 +2717,7 @@ void do_linter(void)
|
|||
return;
|
||||
}
|
||||
|
||||
if (helpless && LINES > 4) {
|
||||
if (helpless && LINES > 5) {
|
||||
UNSET(NO_HELP);
|
||||
window_init();
|
||||
}
|
||||
|
|
|
@ -1687,7 +1687,7 @@ void wipe_statusbar(void)
|
|||
/* Blank out the two help lines (when they are present). */
|
||||
void blank_bottombars(void)
|
||||
{
|
||||
if (!ISSET(NO_HELP) && LINES > 4) {
|
||||
if (!ISSET(NO_HELP) && LINES > 5) {
|
||||
blank_row(bottomwin, 1);
|
||||
blank_row(bottomwin, 2);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue