Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/base/browser/ui/list/listWidget.ts')
-rw-r--r--src/vs/base/browser/ui/list/listWidget.ts16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/vs/base/browser/ui/list/listWidget.ts b/src/vs/base/browser/ui/list/listWidget.ts
index 16f8e590c29..5df3143479c 100644
--- a/src/vs/base/browser/ui/list/listWidget.ts
+++ b/src/vs/base/browser/ui/list/listWidget.ts
@@ -631,11 +631,11 @@ export class List<T> implements ISpliceable<T>, IDisposable {
return mapEvent(this._onPin.event, indexes => this.toListEvent({ indexes }));
}
- readonly onDOMFocus: Event<void>;
- readonly onDOMBlur: Event<void>;
+ readonly onDidFocus: Event<void>;
+ readonly onDidBlur: Event<void>;
- private _onDispose = new Emitter<void>();
- get onDispose(): Event<void> { return this._onDispose.event; }
+ private _onDidDispose = new Emitter<void>();
+ get onDidDispose(): Event<void> { return this._onDidDispose.event; }
constructor(
container: HTMLElement,
@@ -666,10 +666,10 @@ export class List<T> implements ISpliceable<T>, IDisposable {
this.view
]);
- this.disposables = [this.focus, this.selection, this.view, this._onDispose];
+ this.disposables = [this.focus, this.selection, this.view, this._onDidDispose];
- this.onDOMFocus = mapEvent(domEvent(this.view.domNode, 'focus', true), () => null);
- this.onDOMBlur = mapEvent(domEvent(this.view.domNode, 'blur', true), () => null);
+ this.onDidFocus = mapEvent(domEvent(this.view.domNode, 'focus', true), () => null);
+ this.onDidBlur = mapEvent(domEvent(this.view.domNode, 'blur', true), () => null);
if (typeof options.keyboardSupport !== 'boolean' || options.keyboardSupport) {
const controller = new KeyboardController(this, this.view);
@@ -972,7 +972,7 @@ export class List<T> implements ISpliceable<T>, IDisposable {
}
dispose(): void {
- this._onDispose.fire();
+ this._onDidDispose.fire();
this.disposables = dispose(this.disposables);
}
}