mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 08:02:22 +03:00
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:
parent
6fba1e46a8
commit
7df8b6fe10
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user