File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
src/vs/workbench/contrib/accessibility/browser Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"version" : " 2.0.0" ,
3
3
"tasks" : [
4
-
5
4
{
6
5
"type" : " npm" ,
7
6
"script" : " watch-clientd" ,
Original file line number Diff line number Diff line change @@ -504,12 +504,7 @@ export class AccessibleView extends Disposable {
504
504
e . stopPropagation ( ) ;
505
505
this . _contextViewService . hideContextView ( ) ;
506
506
this . _updateContextKeys ( provider , false ) ;
507
- // HACK: Delay to allow the context view to hide #186514
508
- if ( provider . id === AccessibleViewProviderId . Terminal ) {
509
- provider . onClose ( ) ;
510
- } else {
511
- setTimeout ( ( ) => provider . onClose ( ) , 100 ) ;
512
- }
507
+ provider . onClose ( ) ;
513
508
} ;
514
509
const disposableStore = new DisposableStore ( ) ;
515
510
disposableStore . add ( this . _editorWidget . onKeyDown ( ( e ) => {
You can’t perform that action at this time.
0 commit comments