mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Merge pull request #110 from Tyriar/64_cursor_disappears_when_scrolling
Draw cursor at correct position when scrolling
This commit is contained in:
+1
-2
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user