From de1773a453af6776b8a92b09eee5f53685f393ad Mon Sep 17 00:00:00 2001 From: Marco Cadetg Date: Tue, 6 Jan 2026 21:54:06 +0100 Subject: [PATCH] feat(ui): add grouping hint to status bar (#125) --- src/ui.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/ui.rs b/src/ui.rs index 78b05aa..bbf326e 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -3034,10 +3034,7 @@ fn draw_status_bar(f: &mut Frame, ui_state: &UIState, connection_count: usize, a if time.elapsed().as_secs() < 3 { format!(" {} ", msg) } else { - format!( - " Press 'h' for help | 'c' to copy address | Connections: {} ", - connection_count - ) + " 'h' help | Tab/Shift+Tab switch tabs | '/' filter | 'a' group | 'c' copy ".to_string() } } else if !ui_state.filter_query.is_empty() { format!( @@ -3045,10 +3042,7 @@ fn draw_status_bar(f: &mut Frame, ui_state: &UIState, connection_count: usize, a connection_count ) } else { - format!( - " 'h' help | Tab/Shift+Tab switch tabs | '/' filter | 'c' copy | Connections: {} ", - connection_count - ) + " 'h' help | Tab/Shift+Tab switch tabs | '/' filter | 'a' group | 'c' copy ".to_string() }; let style = if ui_state.quit_confirmation || ui_state.clear_confirmation {