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 c2667dd commit 6dc91d8Copy full SHA for 6dc91d8
src/vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget.ts
@@ -147,6 +147,7 @@ export class InlineChatZoneWidget extends ZoneWidget {
147
148
super.show(position, this._computeHeightInLines());
149
this._setWidgetMargins(position);
150
+ this.widget.chatWidget.setVisible(true);
151
this.widget.focus();
152
153
scrollState.restore(this.editor);
@@ -209,6 +210,7 @@ export class InlineChatZoneWidget extends ZoneWidget {
209
210
this.container!.classList.remove('inside-selection');
211
this._ctxCursorPosition.reset();
212
this.widget.reset();
213
+ this.widget.chatWidget.setVisible(false);
214
super.hide();
215
aria.status(localize('inlineChatClosed', 'Closed inline chat widget'));
216
}
0 commit comments