mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-19 18:07:58 +00:00
reversed cursor blink cycle (fixes #422)
This commit is contained in:
@@ -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_()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user