display: with --zero, redraw the bottom row instead of wiping a message
This fixes https://savannah.gnu.org/bugs/?61541.
Bug existed since commit 03637030
from two weeks ago.
master
parent
be61aad935
commit
511a2850a1
|
@ -1673,8 +1673,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)
|
||||||
{
|
{
|
||||||
|
#ifndef NANO_TINY
|
||||||
|
if (ISSET(ZERO))
|
||||||
|
wredrawln(edit, editwinrows - 1, 1);
|
||||||
|
|
||||||
if (ISSET(ZERO) || ISSET(MINIBAR) || LINES == 1)
|
if (ISSET(ZERO) || ISSET(MINIBAR) || LINES == 1)
|
||||||
return;
|
return;
|
||||||
|
#endif
|
||||||
|
|
||||||
blank_row(bottomwin, 0);
|
blank_row(bottomwin, 0);
|
||||||
wnoutrefresh(bottomwin);
|
wnoutrefresh(bottomwin);
|
||||||
|
|
Loading…
Reference in New Issue