Skip to content

Commit a3bac06

Browse files
committed
1 parent b59c8da commit a3bac06

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/vs/workbench/browser/layout.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1308,6 +1308,12 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
13081308

13091309
this.storageService.store(Storage.SIDEBAR_SIZE, sideBarSize, StorageScope.GLOBAL, StorageTarget.MACHINE);
13101310

1311+
const auxiliaryBarSize = this.state.auxiliaryBar.hidden
1312+
? grid.getViewCachedVisibleSize(this.auxiliaryBarPartView)
1313+
: grid.getViewSize(this.auxiliaryBarPartView).width;
1314+
1315+
this.storageService.store(Storage.AUXILIARYBAR_SIZE, auxiliaryBarSize, StorageScope.GLOBAL, StorageTarget.MACHINE);
1316+
13111317
const panelSize = this.state.panel.hidden
13121318
? grid.getViewCachedVisibleSize(this.panelPartView)
13131319
: (this.state.panel.position === Position.BOTTOM ? grid.getViewSize(this.panelPartView).height : grid.getViewSize(this.panelPartView).width);

0 commit comments

Comments
 (0)