diff --git a/js/term/screen.js b/js/term/screen.js index 08aa102..0d6557a 100644 --- a/js/term/screen.js +++ b/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