We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1b4460e + 3b30123 commit bb5d61fCopy full SHA for bb5d61f
addons/xterm-addon-webgl/src/WebglRenderer.ts
@@ -365,9 +365,9 @@ export class WebglRenderer extends Disposable implements IRenderer {
365
private _updateCursorBlink(): void {
366
if (this._terminal.options.cursorBlink) {
367
if (!this._cursorBlinkStateManager) {
368
- this._cursorBlinkStateManager = new CursorBlinkStateManager(() => {
+ this._cursorBlinkStateManager = this.register(new CursorBlinkStateManager(() => {
369
this._requestRedrawCursor();
370
- }, this._coreBrowserService);
+ }, this._coreBrowserService));
371
}
372
} else {
373
this._cursorBlinkStateManager?.dispose();
0 commit comments