Merge branch 'master' into clusters

This commit is contained in:
Per Bothner
2023-08-10 12:24:51 -07:00
committed by GitHub
@@ -365,9 +365,9 @@ export class WebglRenderer extends Disposable implements IRenderer {
private _updateCursorBlink(): void {
if (this._terminal.options.cursorBlink) {
if (!this._cursorBlinkStateManager) {
this._cursorBlinkStateManager = new CursorBlinkStateManager(() => {
this._cursorBlinkStateManager = this.register(new CursorBlinkStateManager(() => {
this._requestRedrawCursor();
}, this._coreBrowserService);
}, this._coreBrowserService));
}
} else {
this._cursorBlinkStateManager?.dispose();