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 ad5a40f commit 93e2528Copy full SHA for 93e2528
src/vs/workbench/contrib/inlineChat/browser/inlineChatContentWidget.ts
@@ -70,9 +70,9 @@ export class InlineChatContentWidget implements IContentWidget {
70
}
71
);
72
this._store.add(this._widget);
73
- this._store.add(this._widget.onDidChangeHeight(() => _editor.layoutContentWidget(this)));
74
this._widget.render(this._inputContainer);
75
this._widget.setModel(this._defaultChatModel, {});
+ this._store.add(this._widget.inputEditor.onDidContentSizeChange(() => _editor.layoutContentWidget(this)));
76
77
this._domNode.tabIndex = -1;
78
this._domNode.className = 'inline-chat-content-widget interactive-session';
0 commit comments