Skip to content

Commit ac56e6e

Browse files
authored
debt - reduce large workbench.statusbar.hidden state (microsoft#203564)
1 parent 3946598 commit ac56e6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/browser/parts/statusbar/statusbarModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class StatusbarViewModel extends Disposable {
4848
if (hiddenRaw) {
4949
try {
5050
const hiddenArray: string[] = JSON.parse(hiddenRaw);
51-
this.hidden = new Set(hiddenArray);
51+
this.hidden = new Set(hiddenArray.filter(entry => !entry.startsWith('status.workspaceTrust.'))); // TODO@bpasero remove this migration eventually
5252
} catch (error) {
5353
// ignore parsing errors
5454
}

0 commit comments

Comments
 (0)