screen: defeat a VTE bug by doing an extra cursor move and update
This fixes https://savannah.gnu.org/bugs/?49106.master
parent
815b326864
commit
0a18d8912b
|
@ -2180,7 +2180,11 @@ void bottombars(int menu)
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Defeat a VTE bug by moving the cursor and forcing a screen update. */
|
||||||
|
wmove(bottomwin, 0, 0);
|
||||||
wnoutrefresh(bottomwin);
|
wnoutrefresh(bottomwin);
|
||||||
|
doupdate();
|
||||||
|
|
||||||
reset_cursor();
|
reset_cursor();
|
||||||
wnoutrefresh(edit);
|
wnoutrefresh(edit);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue