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.
1 parent ecb104a commit 98a618aCopy full SHA for 98a618a
src/vs/editor/browser/controller/textAreaInput.ts
@@ -707,8 +707,8 @@ export class TextAreaWrapper extends Disposable implements ICompleteTextAreaWrap
707
super();
708
this._ignoreSelectionChangeTime = 0;
709
710
- this.onBeforeInput(() => inputLatency.markInputStart());
711
- this.onInput(() => inputLatency.markInputEnd());
+ this._register(this.onBeforeInput(() => inputLatency.markInputStart()));
+ this._register(this.onInput(() => inputLatency.markInputEnd()));
712
713
this._register(dom.addDisposableListener(this._actual, TextAreaSyntethicEvents.Tap, () => this._onSyntheticTap.fire()));
714
}
0 commit comments