Fix select box event ordering (#13831)

* Fix select box event ordering

* more fixes

* Fix page

* Revert typing change

* Undo param

* Fix compile error

* Completely remove typings
This commit is contained in:
Charles Gagnon
2020-12-17 09:51:10 -08:00
committed by GitHub
parent e9964a4dfd
commit 60f556428f
3 changed files with 9 additions and 7 deletions

View File

@@ -81,8 +81,8 @@ export class SelectBox extends vsSelectBox {
this._selectedOption = selectedOption;
this._register(super.onDidSelect(newSelect => {
this._onDidSelect.fire(newSelect);
this.onSelect(newSelect);
this._onDidSelect.fire(newSelect);
}));
this.enabledSelectBackground = this.selectBackground;