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
1 changed files with 0 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue