fix: Wrap around the top of the picker menu when scrolling

Forgot to port the improvements in menu.rs

Fixes #734
This commit is contained in:
Blaž Hrastnik 2021-09-17 14:34:59 +09:00
parent b02d872938
commit c7d6e4461f

View File

@ -270,17 +270,15 @@ pub fn score(&mut self) {
}
pub fn move_up(&mut self) {
self.cursor = self.cursor.saturating_sub(1);
let len = self.matches.len();
let pos = ((self.cursor + len.saturating_sub(1)) % len) % len;
self.cursor = pos;
}
pub fn move_down(&mut self) {
if self.matches.is_empty() {
return;
}
if self.cursor < self.matches.len() - 1 {
self.cursor += 1;
}
let len = self.matches.len();
let pos = (self.cursor + 1) % len;
self.cursor = pos;
}
pub fn selection(&self) -> Option<&T> {