1
0
mirror of https://github.com/Eugeny/tabby.git synced 2025-07-19 18:07:58 +00:00

reversed cursor blink cycle (fixes )

This commit is contained in:
Eugene Pankov
2018-10-13 18:54:21 +02:00
parent a0e3b0b033
commit 8110fef3c0

@@ -235,5 +235,12 @@ export class HTermFrontend extends Frontend {
size.height += this.configuredLinePadding size.height += this.configuredLinePadding
return size return size
} }
const onCursorBlink_ = this.term.onCursorBlink_.bind(this.term)
this.term.onCursorBlink_ = () => {
this.term.cursorNode_.style.opacity = '0'
onCursorBlink_()
}
} }
} }