Skip to content

Commit

Permalink
No text to speech when a change is applied (fix #213667) (#213804)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero authored May 29, 2024
1 parent 6dc91d8 commit ef74999
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vs/workbench/contrib/chat/common/chatModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/

import { localize } from 'vs/nls';
import { asArray, firstOrDefault } from 'vs/base/common/arrays';
import { DeferredPromise } from 'vs/base/common/async';
import { Emitter, Event } from 'vs/base/common/event';
Expand Down Expand Up @@ -251,7 +252,7 @@ export class Response implements IResponse {
} else if (part.kind === 'command') {
return part.command.title;
} else if (part.kind === 'textEditGroup') {
return '';
return localize('editsSummary', "Made changes.");
} else if (part.kind === 'progressMessage') {
return '';
} else if (part.kind === 'confirmation') {
Expand Down

0 comments on commit ef74999

Please sign in to comment.