We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc7c90a commit 8053b22Copy full SHA for 8053b22
1 file changed
src/vs/workbench/api/common/extHostStatusBar.ts
@@ -117,6 +117,11 @@ export class ExtHostStatusBarEntry implements vscode.StatusBarItem {
117
this.update();
118
}
119
120
+ public set accessibilityInformation(accessibilityInformation: vscode.AccessibilityInformation | undefined) {
121
+ this._accessibilityInformation = accessibilityInformation;
122
+ this.update();
123
+ }
124
+
125
public show(): void {
126
this._visible = true;
127
0 commit comments