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.
Welcome Page + Standard Chat Panel
1 parent 394e0df commit e31a87bCopy full SHA for e31a87b
src/vs/workbench/browser/layout.ts
@@ -2956,7 +2956,7 @@ class LayoutStateModel extends Disposable {
2956
) {
2957
const mainContainerDimension = configuration.mainContainerDimension;
2958
this.setRuntimeValue(LayoutStateKeys.AUXILIARYBAR_HIDDEN, false);
2959
- this.setInitializationValue(LayoutStateKeys.AUXILIARYBAR_SIZE, mainContainerDimension.width / 2);
+ this.setInitializationValue(LayoutStateKeys.AUXILIARYBAR_SIZE, Math.ceil(mainContainerDimension.width / (1.618 * 1.618 /* golden ratio */)));
2960
}
2961
2962
0 commit comments