From a29c4cf52bb8709b2da91c38238111f3eaa8c4b4 Mon Sep 17 00:00:00 2001 From: Lee Murray Date: Fri, 27 Mar 2026 17:57:43 +0000 Subject: [PATCH] Increase minimum width of AuxiliaryBarPart (#305741) * fix: increase minimum width of AuxiliaryBarPart to improve layout Co-authored-by: Copilot * Update src/vs/sessions/browser/parts/auxiliaryBarPart.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: mrleemurray Co-authored-by: Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/vs/sessions/browser/parts/auxiliaryBarPart.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/sessions/browser/parts/auxiliaryBarPart.ts b/src/vs/sessions/browser/parts/auxiliaryBarPart.ts index 2fbf3022095..7f140d2fd7b 100644 --- a/src/vs/sessions/browser/parts/auxiliaryBarPart.ts +++ b/src/vs/sessions/browser/parts/auxiliaryBarPart.ts @@ -61,8 +61,8 @@ export class AuxiliaryBarPart extends AbstractPaneCompositePart { private readonly _runScriptMenu = this._register(new MutableDisposable()); private readonly _runScriptMenuListener = this._register(new MutableDisposable()); - // 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;