mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 10:08:49 +01:00
no width restriction for inline chat (#234975)
fixes https://github.com/microsoft/vscode-copilot/issues/9266
This commit is contained in:
@@ -155,8 +155,8 @@ export class InlineChatZoneWidget extends ZoneWidget {
|
||||
this._updatePadding();
|
||||
|
||||
const info = this.editor.getLayoutInfo();
|
||||
let width = info.contentWidth - info.verticalScrollbarWidth;
|
||||
width = Math.min(850, width);
|
||||
const width = info.contentWidth - info.verticalScrollbarWidth;
|
||||
// width = Math.min(850, width);
|
||||
|
||||
this._dimension = new Dimension(width, heightInPixel);
|
||||
this.widget.layout(this._dimension);
|
||||
|
||||
Reference in New Issue
Block a user