Skip to content

Commit 6193511

Browse files
committed
1 parent d42fad2 commit 6193511

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/vs/workbench/contrib/accessibility/browser/accessibleView.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,11 @@ export class AccessibleView extends Disposable {
672672
const accessibleViewHelpProvider: IAccessibleContentProvider = {
673673
id: lastProvider.id,
674674
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+
},
676680
options: { type: AccessibleViewType.Help },
677681
verbositySettingKey: lastProvider.verbositySettingKey
678682
};

0 commit comments

Comments
 (0)