Skip to content

Commit

Permalink
fixes #136021
Browse files Browse the repository at this point in the history
  • Loading branch information
sbatten committed Oct 28, 2021
1 parent 926dcb8 commit 5e7f758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/browser/layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1684,7 +1684,7 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
}

private setAuxiliaryBarHidden(hidden: boolean, skipLayout?: boolean): void {
if (!this.configurationService.getValue(Settings.AUXILIARYBAR_ENABLED)) {
if (!this.configurationService || !this.configurationService.getValue(Settings.AUXILIARYBAR_ENABLED)) {
return;
}

Expand Down

0 comments on commit 5e7f758

Please sign in to comment.