mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
Fix crash when trying to scroll on empty results
This commit is contained in:
parent
e85cc943b3
commit
b7c2ecedd9
28
src/list.rs
28
src/list.rs
|
@ -242,6 +242,8 @@ impl CustomList {
|
||||||
pub fn reset_selection(&mut self) {
|
pub fn reset_selection(&mut self) {
|
||||||
if !self.filtered_items.is_empty() {
|
if !self.filtered_items.is_empty() {
|
||||||
self.list_state.select(Some(0));
|
self.list_state.select(Some(0));
|
||||||
|
} else {
|
||||||
|
self.list_state.select(None);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -317,8 +319,11 @@ impl CustomList {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn try_scroll_up(&mut self) {
|
fn try_scroll_up(&mut self) {
|
||||||
self.list_state
|
if let Some(selected) = self.list_state.selected() {
|
||||||
.select(Some(self.list_state.selected().unwrap().saturating_sub(1)));
|
if selected > 0 {
|
||||||
|
self.list_state.select(Some(selected.saturating_sub(1)));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn try_scroll_down(&mut self) {
|
fn try_scroll_down(&mut self) {
|
||||||
|
@ -332,15 +337,16 @@ impl CustomList {
|
||||||
self.filtered_items.len()
|
self.filtered_items.len()
|
||||||
};
|
};
|
||||||
|
|
||||||
let curr_selection = self.list_state.selected().unwrap();
|
if let Some(curr_selection) = self.list_state.selected() {
|
||||||
if self.at_root() {
|
if self.at_root() {
|
||||||
self.list_state
|
self.list_state
|
||||||
.select(Some((curr_selection + 1).min(count - 1)));
|
.select(Some((curr_selection + 1).min(count - 1)));
|
||||||
} else {
|
} else {
|
||||||
// When we are not at the root, we have to account for 1 more "virtual" node, `..`. So
|
// When we are not at the root, we have to account for 1 more "virtual" node, `..`. So
|
||||||
// the count is 1 bigger (select is 0 based, because it's an index)
|
// the count is 1 bigger (select is 0 based, because it's an index)
|
||||||
self.list_state
|
self.list_state
|
||||||
.select(Some((curr_selection + 1).min(count)));
|
.select(Some((curr_selection + 1).min(count)));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user