Fix: Picker select_last not scrolling to item index (#13393)

Release Notes:

- Fix: Command palette not scrolling down to the last element
This commit is contained in:
Vitor Ramos
2024-06-23 09:36:52 +02:00
committed by GitHub
parent 6fba1e46a8
commit 7df8b6fe10
-1
View File
@@ -300,7 +300,6 @@ impl<D: PickerDelegate> Picker<D> {
fn select_last(&mut self, _: &menu::SelectLast, cx: &mut ViewContext<Self>) {
let count = self.delegate.match_count();
if count > 0 {
self.delegate.set_selected_index(count - 1, cx);
self.set_selected_index(count - 1, true, cx);
cx.notify();
}