Skip to content

Commit a2ea514

Browse files
committed
setup - restore preferred 400px width
1 parent 259bfba commit a2ea514

File tree

1 file changed

+2
-2
lines changed
  • src/vs/workbench/contrib/chat/browser

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/chat/browser/chat.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ export function ensureSideBarChatViewSize(viewDescriptorService: IViewDescriptor
6060

6161
const viewPart = location === ViewContainerLocation.Sidebar ? Parts.SIDEBAR_PART : Parts.AUXILIARYBAR_PART;
6262
const partSize = layoutService.getSize(viewPart);
63-
if (partSize.width < 300) {
64-
layoutService.setSize(viewPart, { width: 300, height: partSize.height });
63+
if (partSize.width < 400) {
64+
layoutService.setSize(viewPart, { width: 400, height: partSize.height });
6565
}
6666
}
6767

0 commit comments

Comments
 (0)