mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-09 05:50:08 +00:00
reversed cursor blink cycle (fixes #422)
This commit is contained in:
parent
a0e3b0b033
commit
8110fef3c0
@ -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…
x
Reference in New Issue
Block a user