Fix cursor-hanging not updating properly

pull/1/head
cpsdqs 7 years ago
parent 174e6950d0
commit 32c6246c10
Signed by untrusted user: cpsdqs
GPG Key ID: 3F59586BB7448DD1
  1. 2
      js/term/screen.js

@ -671,7 +671,7 @@ module.exports = class TermScreen extends EventEmitter {
break
case 'cursor':
if (this.cursor.x !== update.x || this.cursor.y !== update.y) {
if (this.cursor.x !== update.x || this.cursor.y !== update.y || this.cursor.hanging !== update.hanging) {
this.cursor.x = update.x
this.cursor.y = update.y
this.cursor.hanging = update.hanging

Loading…
Cancel
Save