optimized refreshing by using less known curses routines

This commit is contained in:
anon 2023-10-15 20:33:07 +02:00
parent d7bf07886a
commit a998c48b35

View File

@ -845,11 +845,12 @@ void display(void) {
if(window_change & CH_MODE) { display_mode(); }
refresh();
wrefresh(winput);
wrefresh(wmode);
wrefresh(wresult);
wrefresh(wtooltip);
wrefresh(wcase);
wnoutrefresh(winput);
wnoutrefresh(wmode);
wnoutrefresh(wresult);
wnoutrefresh(wtooltip);
wnoutrefresh(wcase);
doupdate();
}
window_change = CH_NONE;