We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c88be1 commit 8b15d16Copy full SHA for 8b15d16
oryx-tui/src/app.rs
@@ -612,7 +612,7 @@ impl App {
612
} else if app_packets.len() > window_size {
613
let selected_packet_index = self.packets_table_state.selected().unwrap();
614
self.packet_index = Some(
615
- fuzzy.packet_end_index.saturating_sub(window_size) + selected_packet_index,
+ self.packet_end_index.saturating_sub(window_size) + selected_packet_index,
616
);
617
&app_packets
618
[self.packet_end_index.saturating_sub(window_size)..self.packet_end_index]
0 commit comments