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.
1 parent 171ca21 commit bc727a2Copy full SHA for bc727a2
src/vs/platform/theme/electron-main/themeMainServiceImpl.ts
@@ -334,7 +334,7 @@ export class ThemeMainService extends Disposable implements IThemeMainService {
334
}
335
336
// Figure out auxiliary bar width based on workspace, configuration and overrides
337
- const auxiliaryBarDefaultVisibility = this.configurationService.getValue(AUXILIARYBAR_DEFAULT_VISIBILITY);
+ const auxiliaryBarDefaultVisibility = this.configurationService.getValue(AUXILIARYBAR_DEFAULT_VISIBILITY) ?? 'visibleInWorkspace';
338
let auxiliaryBarWidth: number;
339
if (workspace) {
340
const auxiliaryBarVisible = override.layoutInfo.workspaces[workspace.id]?.auxiliaryBarVisible;
0 commit comments