Avoid scrolling to the new cursor position so the assistant's output is stable

Co-Authored-By: Antonio Scandurra <antonio@zed.dev>
This commit is contained in:
Nathan Sobo 2023-06-28 10:32:06 +02:00
parent f52d3ea5ef
commit 83fc7b9b7c

View File

@ -1681,6 +1681,8 @@ impl ConversationEditor {
|selections| selections.select_ranges(new_selections),
);
});
// Avoid scrolling to the new cursor position so the assistant's output is stable.
cx.defer(|this, _| this.scroll_position = None);
}
}