mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-23 12:59:54 +00:00
possibly fixed cursor blink interval overlaps (fixes #216)
This commit is contained in:
parent
f3f969a006
commit
1b1b2af545
@ -57,9 +57,13 @@ hterm.hterm.Terminal.prototype.applyCursorShape = function () {
|
|||||||
console.warn('Unknown cursor style: ' + modeNumber)
|
console.warn('Unknown cursor style: ' + modeNumber)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
setTimeout(() => {
|
||||||
this.setCursorShape(modes[modeNumber][0])
|
this.setCursorShape(modes[modeNumber][0])
|
||||||
this.setCursorBlink(modes[modeNumber][1])
|
this.setCursorBlink(modes[modeNumber][1])
|
||||||
|
})
|
||||||
|
setTimeout(() => {
|
||||||
this.setCursorVisible(true)
|
this.setCursorVisible(true)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
hterm.hterm.VT.CSI[' q'] = function (parseState) {
|
hterm.hterm.VT.CSI[' q'] = function (parseState) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user