Skip to content

Commit 21e6c2d

Browse files
committed
1 parent 272653c commit 21e6c2d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vs/workbench/contrib/inlineChat/browser/inlineChatController.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ export class InlineChatController implements IEditorContribution {
764764
status = localize('markdownResponseMessage', "{0}", content);
765765
}
766766
this._activeSession.lastExpansionState = this._zone.value.widget.expansionState;
767-
767+
this._chatAccessibilityService.acceptResponse();
768768
} else if (response instanceof EditResponse) {
769769
// edit response -> complex...
770770
this._zone.value.widget.updateMarkdownMessage(undefined);
@@ -846,6 +846,7 @@ export class InlineChatController implements IEditorContribution {
846846
} else {
847847
this._inlineChatSessionService.releaseSession(mySession);
848848
}
849+
this._chatAccessibilityService.acceptResponse();
849850
}
850851

851852
private static isEditOrMarkdownResponse(response: EditResponse | MarkdownResponse | EmptyResponse | ErrorResponse | undefined): response is EditResponse | MarkdownResponse {

0 commit comments

Comments
 (0)