From fd6cacdfd54b40de1ab1b44d39d33bc75dce9fe0 Mon Sep 17 00:00:00 2001 From: "Marco Cadetg (aider)" Date: Sat, 10 May 2025 17:52:27 +0200 Subject: [PATCH] refactor: Increase remote address column width --- src/ui.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui.rs b/src/ui.rs index 51a62fc..c8b101b 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -114,10 +114,10 @@ fn draw_connections_list(f: &mut Frame, app: &mut App, area: Rect) { let widths = [ Constraint::Length(6), // Protocol Constraint::Length(28), // Local Address - Constraint::Length(28), // Remote Address + Constraint::Length(38), // Remote Address - Increased Width Constraint::Length(12), // State Constraint::Length(10), // Service - Constraint::Length(22), // Bandwidth (Down/Up) - Increased Width + Constraint::Length(22), // Bandwidth (Down/Up) Constraint::Min(10), // Process ];