File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/vs/workbench/contrib/accessibility/browser Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -672,7 +672,11 @@ export class AccessibleView extends Disposable {
672
672
const accessibleViewHelpProvider : IAccessibleContentProvider = {
673
673
id : lastProvider . id ,
674
674
provideContent : ( ) => lastProvider . options . customHelp ? lastProvider ?. options . customHelp ( ) : this . _getAccessibleViewHelpDialogContent ( this . _goToSymbolsSupported ( ) ) ,
675
- onClose : ( ) => this . show ( lastProvider ) ,
675
+ onClose : ( ) => {
676
+ this . _contextViewService . hideContextView ( ) ;
677
+ // HACK: Delay to allow the context view to hide #207638
678
+ setTimeout ( ( ) => this . show ( lastProvider ) , 100 ) ;
679
+ } ,
676
680
options : { type : AccessibleViewType . Help } ,
677
681
verbositySettingKey : lastProvider . verbositySettingKey
678
682
} ;
You can’t perform that action at this time.
0 commit comments