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 7ed9fcb commit 4911eceCopy full SHA for 4911ece
src/vs/workbench/browser/layout.ts
@@ -2129,7 +2129,7 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
2129
return (
2130
this.getPanelAlignment() === 'center' || // the workbench grid currently prevents us from supporting panel
2131
!isHorizontal(this.getPanelPosition()) // maximization with non-center panel alignment
2132
- ) && this.isVisible(Parts.PANEL_PART, mainWindow) && !this.isVisible(Parts.EDITOR_PART, mainWindow);
+ ) && !this.isVisible(Parts.EDITOR_PART, mainWindow) && !this.isAuxiliaryBarMaximized();
2133
}
2134
2135
toggleMaximizedPanel(): void {
0 commit comments