feedback: wipe the status bar by default after 20 keystrokes

The 26 keystrokes inherited from Pico is a weird number, and too long.
master
Benno Schulenberg 2021-01-11 16:18:35 +01:00
parent 9266fa6657
commit 71402bb7e9
1 changed files with 2 additions and 6 deletions

View File

@ -2286,12 +2286,8 @@ void statusline(message_type importance, const char *msg, ...)
SET(WHITESPACE_DISPLAY); SET(WHITESPACE_DISPLAY);
#endif #endif
/* If doing quick blanking, blank the status bar after just one keystroke. /* When requested, wipe the status bar after just one keystroke. */
* Otherwise, blank it after twenty-six keystrokes, as Pico does. */ statusblank = (ISSET(QUICK_BLANK) ? 1 : 20);
if (ISSET(QUICK_BLANK))
statusblank = 1;
else
statusblank = 26;
} }
/* Display a normal message on the status bar, quietly. */ /* Display a normal message on the status bar, quietly. */