screen: remove an unneeded blanking of the statusbar
It's redundant because the call of total_refresh() wipes everything.master
parent
4eac699df3
commit
bfcce57b69
|
@ -1289,12 +1289,8 @@ RETSIGTYPE do_continue(int signal)
|
||||||
* and restore the terminal to its previous state in the process. */
|
* and restore the terminal to its previous state in the process. */
|
||||||
regenerate_screen();
|
regenerate_screen();
|
||||||
#else
|
#else
|
||||||
/* Restore the terminal to its previous state. */
|
/* Restore the state of the terminal and redraw the whole screen. */
|
||||||
terminal_init();
|
terminal_init();
|
||||||
|
|
||||||
/* Wipe statusbar; redraw titlebar and edit window (and help lines). */
|
|
||||||
blank_statusbar();
|
|
||||||
wnoutrefresh(bottomwin);
|
|
||||||
total_refresh();
|
total_refresh();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue