Skip to content

Commit 5e7f758

Browse files
committed
1 parent 926dcb8 commit 5e7f758

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/browser/layout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1684,7 +1684,7 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
16841684
}
16851685

16861686
private setAuxiliaryBarHidden(hidden: boolean, skipLayout?: boolean): void {
1687-
if (!this.configurationService.getValue(Settings.AUXILIARYBAR_ENABLED)) {
1687+
if (!this.configurationService || !this.configurationService.getValue(Settings.AUXILIARYBAR_ENABLED)) {
16881688
return;
16891689
}
16901690

0 commit comments

Comments
 (0)