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 3318a66 commit 2c28cd7Copy full SHA for 2c28cd7
src/vs/workbench/contrib/inlineChat/browser/inlineChatContentWidget.ts
@@ -120,8 +120,8 @@ export class InlineChatContentWidget implements IContentWidget {
120
beforeRender(): IDimension | null {
121
122
const contentWidth = this._editor.getLayoutInfo().contentWidth;
123
- const minWidth = Math.round(contentWidth * 0.33);
124
- const maxWidth = Math.round(contentWidth * 0.66);
+ const minWidth = Math.round(contentWidth * 0.38);
+ const maxWidth = Math.round(contentWidth * 0.82);
125
126
const width = clamp(220, minWidth, maxWidth);
127
0 commit comments