Skip to content

Commit bc727a2

Browse files
authored
splash - fix default 2nd sidebar visibility assumptions (microsoft#264296)
1 parent 171ca21 commit bc727a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/theme/electron-main/themeMainServiceImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ export class ThemeMainService extends Disposable implements IThemeMainService {
334334
}
335335

336336
// Figure out auxiliary bar width based on workspace, configuration and overrides
337-
const auxiliaryBarDefaultVisibility = this.configurationService.getValue(AUXILIARYBAR_DEFAULT_VISIBILITY);
337+
const auxiliaryBarDefaultVisibility = this.configurationService.getValue(AUXILIARYBAR_DEFAULT_VISIBILITY) ?? 'visibleInWorkspace';
338338
let auxiliaryBarWidth: number;
339339
if (workspace) {
340340
const auxiliaryBarVisible = override.layoutInfo.workspaces[workspace.id]?.auxiliaryBarVisible;

0 commit comments

Comments
 (0)