feedback: wipe the status bar by default after 20 keystrokes
The 26 keystrokes inherited from Pico is a weird number, and too long.master
parent
9266fa6657
commit
71402bb7e9
|
@ -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. */
|
||||||
|
|
Loading…
Reference in New Issue