Skip to content

Commit 5547eb9

Browse files
authored
chat: fix not notifying window on confirmation (#251292)
Applies updated naming Ref #251290
1 parent 31620a3 commit 5547eb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationWidget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ abstract class BaseChatConfirmationWidget extends Disposable {
176176
protected renderMessage(element: HTMLElement, listContainer: HTMLElement): void {
177177
this.messageElement.append(element);
178178

179-
if (this._configurationService.getValue<boolean>('chat.focusWindowOnConfirmation')) {
179+
if (this._configurationService.getValue<boolean>('chat.notifyWindowOnConfirmation')) {
180180
const targetWindow = dom.getWindow(listContainer);
181181
if (!targetWindow.document.hasFocus()) {
182182
this._hostService.focus(targetWindow, { mode: FocusMode.Notify });

0 commit comments

Comments
 (0)