Skip to content

Commit cb78b30

Browse files
committed
fix: the status tree page-down action overflows the tree length
1 parent bff6fba commit cb78b30

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/components/utils/statustree.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -308,17 +308,19 @@ impl StatusTree {
308308
new_index = new_index.saturating_add(1);
309309
}
310310

311-
if self.is_visible_index(new_index) {
312-
count += 1;
313-
}
314311

315312
if count == self.window_height.get().unwrap_or(0) {
316313
break;
317314
}
318315

319-
if new_index == 0 || new_index == self.tree.len() - 1 {
316+
if new_index == 0 || new_index >= self.tree.len() - 1 {
317+
new_index = cmp::min(new_index, self.tree.len() - 1);
320318
break;
321319
}
320+
321+
if self.is_visible_index(new_index) {
322+
count += 1;
323+
}
322324
}
323325

324326
SelectionChange::new(new_index, false)

0 commit comments

Comments
 (0)