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.
workbench.statusbar.hidden
1 parent 3946598 commit ac56e6eCopy full SHA for ac56e6e
src/vs/workbench/browser/parts/statusbar/statusbarModel.ts
@@ -48,7 +48,7 @@ export class StatusbarViewModel extends Disposable {
48
if (hiddenRaw) {
49
try {
50
const hiddenArray: string[] = JSON.parse(hiddenRaw);
51
- this.hidden = new Set(hiddenArray);
+ this.hidden = new Set(hiddenArray.filter(entry => !entry.startsWith('status.workspaceTrust.'))); // TODO@bpasero remove this migration eventually
52
} catch (error) {
53
// ignore parsing errors
54
}
0 commit comments