Merge pull request #110 from Tyriar/64_cursor_disappears_when_scrolling

Draw cursor at correct position when scrolling
This commit is contained in:
Paris Kasidiaris
2016-06-10 12:22:28 +03:00
committed by GitHub
+1 -2
View File
@@ -1107,9 +1107,8 @@
line = this.lines[row];
out = '';
if (y === this.y
if (this.y === y - (this.ybase - this.ydisp)
&& this.cursorState
&& (this.ydisp === this.ybase)
&& !this.cursorHidden) {
x = this.x;
} else {