mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 09:27:24 +00:00
reversed cursor blink cycle (fixes #422)
This commit is contained in:
parent
a0e3b0b033
commit
8110fef3c0
1 changed files with 7 additions and 0 deletions
|
@ -235,5 +235,12 @@ export class HTermFrontend extends Frontend {
|
|||
size.height += this.configuredLinePadding
|
||||
return size
|
||||
}
|
||||
|
||||
const onCursorBlink_ = this.term.onCursorBlink_.bind(this.term)
|
||||
|
||||
this.term.onCursorBlink_ = () => {
|
||||
this.term.cursorNode_.style.opacity = '0'
|
||||
onCursorBlink_()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue