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 259bfba commit a2ea514Copy full SHA for a2ea514
src/vs/workbench/contrib/chat/browser/chat.ts
@@ -60,8 +60,8 @@ export function ensureSideBarChatViewSize(viewDescriptorService: IViewDescriptor
60
61
const viewPart = location === ViewContainerLocation.Sidebar ? Parts.SIDEBAR_PART : Parts.AUXILIARYBAR_PART;
62
const partSize = layoutService.getSize(viewPart);
63
- if (partSize.width < 300) {
64
- layoutService.setSize(viewPart, { width: 300, height: partSize.height });
+ if (partSize.width < 400) {
+ layoutService.setSize(viewPart, { width: 400, height: partSize.height });
65
}
66
67
0 commit comments