hide bouncing cursor (affects Windows)

This commit is contained in:
Adam D. Ruppe 2018-11-10 14:44:28 -05:00
parent d03a2d4a44
commit 93a7aa324a
1 changed files with 5 additions and 0 deletions

View File

@ -3132,6 +3132,11 @@ class LineGetter {
private int lastDrawLength = 0;
void redraw() {
terminal.hideCursor();
scope(exit) {
terminal.flush();
terminal.showCursor();
}
terminal.moveTo(startOfLineX, startOfLineY);
auto lineLength = availableLineLength();