We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bff6fba commit cb78b30Copy full SHA for cb78b30
src/components/utils/statustree.rs
@@ -308,17 +308,19 @@ impl StatusTree {
308
new_index = new_index.saturating_add(1);
309
}
310
311
- if self.is_visible_index(new_index) {
312
- count += 1;
313
- }
314
315
if count == self.window_height.get().unwrap_or(0) {
316
break;
317
318
319
- if new_index == 0 || new_index == self.tree.len() - 1 {
+ if new_index == 0 || new_index >= self.tree.len() - 1 {
+ new_index = cmp::min(new_index, self.tree.len() - 1);
320
321
+
+ if self.is_visible_index(new_index) {
322
+ count += 1;
323
+ }
324
325
326
SelectionChange::new(new_index, false)
0 commit comments