From a2ea5144208a6f7a458452aff811263a97861264 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Sun, 12 Jan 2025 12:39:31 +0100 Subject: [PATCH] setup - restore preferred 400px width --- src/vs/workbench/contrib/chat/browser/chat.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/chat/browser/chat.ts b/src/vs/workbench/contrib/chat/browser/chat.ts index 15318bd0e4576..47540018a2de9 100644 --- a/src/vs/workbench/contrib/chat/browser/chat.ts +++ b/src/vs/workbench/contrib/chat/browser/chat.ts @@ -60,8 +60,8 @@ export function ensureSideBarChatViewSize(viewDescriptorService: IViewDescriptor const viewPart = location === ViewContainerLocation.Sidebar ? Parts.SIDEBAR_PART : Parts.AUXILIARYBAR_PART; const partSize = layoutService.getSize(viewPart); - if (partSize.width < 300) { - layoutService.setSize(viewPart, { width: 300, height: partSize.height }); + if (partSize.width < 400) { + layoutService.setSize(viewPart, { width: 400, height: partSize.height }); } }