We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3661871 commit 974269eCopy full SHA for 974269e
src/vs/workbench/contrib/accessibility/browser/accessibleView.ts
@@ -103,6 +103,11 @@ class AccessibleView extends Disposable {
103
this.show(this._currentProvider);
104
}
105
}));
106
+ this._register(this._configurationService.onDidChangeConfiguration(e => {
107
+ if (this._currentProvider && this._accessiblityHelpIsShown.get() && e.affectsConfiguration(`accessibility.verbosity.${this._currentProvider.id}`)) {
108
+ this.show(this._currentProvider);
109
+ }
110
+ }));
111
112
113
show(provider: IAccessibleContentProvider): void {
0 commit comments