We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 653a341 commit 66aa080Copy full SHA for 66aa080
1 file changed
src/vs/workbench/contrib/chat/browser/chatWidget.ts
@@ -2191,7 +2191,7 @@ export class ChatWidget extends Disposable implements IChatWidget {
2191
2192
if (this.viewModel) {
2193
this._onDidAcceptInput.fire();
2194
- this.scrollLock = !!checkModeOption(this.input.currentModeKind, this.viewOptions.autoScroll);
+ this.scrollLock = this.isLockedToCodingAgent || !!checkModeOption(this.input.currentModeKind, this.viewOptions.autoScroll);
2195
2196
const editorValue = this.getInput();
2197
const requestId = this.chatAccessibilityService.acceptRequest();
0 commit comments