display: ensure feedback will be cleared also on a one-row terminal
This fixes https://savannah.gnu.org/bugs/?61548.
Bug existed since commit be61aad9
from earlier today.
master
parent
6d828cf470
commit
6a521da437
|
@ -1676,12 +1676,13 @@ void blank_statusbar(void)
|
||||||
/* Wipe the status bar clean and include this in the next screen update. */
|
/* Wipe the status bar clean and include this in the next screen update. */
|
||||||
void wipe_statusbar(void)
|
void wipe_statusbar(void)
|
||||||
{
|
{
|
||||||
|
lastmessage = VACUUM;
|
||||||
|
|
||||||
if (ISSET(ZERO) || ISSET(MINIBAR) || LINES == 1)
|
if (ISSET(ZERO) || ISSET(MINIBAR) || LINES == 1)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
blank_row(bottomwin, 0);
|
blank_row(bottomwin, 0);
|
||||||
wnoutrefresh(bottomwin);
|
wnoutrefresh(bottomwin);
|
||||||
lastmessage = VACUUM;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Blank out the two help lines (when they are present). */
|
/* Blank out the two help lines (when they are present). */
|
||||||
|
|
Loading…
Reference in New Issue