Increase minimum width of AuxiliaryBarPart (#305741)

* fix: increase minimum width of AuxiliaryBarPart to improve layout

Co-authored-by: Copilot <copilot@github.com>

* Update src/vs/sessions/browser/parts/auxiliaryBarPart.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: mrleemurray <mrleemurray@users.noreply.github.com>
Co-authored-by: Copilot <copilot@github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Lee Murray
2026-03-27 17:57:43 +00:00
committed by GitHub
parent 81a487a2a0
commit a29c4cf52b

View File

@@ -61,8 +61,8 @@ export class AuxiliaryBarPart extends AbstractPaneCompositePart {
private readonly _runScriptMenu = this._register(new MutableDisposable<IMenu>());
private readonly _runScriptMenuListener = this._register(new MutableDisposable<IDisposable>());
// Use the side bar dimensions
override readonly minimumWidth: number = 170;
// Sessions-specific auxiliary bar dimensions (intentionally not tied to the sessions SidebarPart values)
override readonly minimumWidth: number = 270;
override readonly maximumWidth: number = Number.POSITIVE_INFINITY;
override readonly minimumHeight: number = 0;
override readonly maximumHeight: number = Number.POSITIVE_INFINITY;