re-focus on TUI and core

This commit is contained in:
2025-07-26 16:51:37 -04:00
parent 272d23c6be
commit 0f2fc8f92c
5 changed files with 359 additions and 21 deletions

View File

@@ -71,7 +71,7 @@ class TUIInterface:
# Calculate panel dimensions based on timeline visibility
if self.navigation.show_timeline:
# Top section: 70% of height, split into left 60% / right 40%
# Top section: 70% of height, split into left 70% / right 30%
# Bottom section: 30% of height, full width
top_height = int(height * 0.7)
bottom_height = height - top_height - 2 # -2 for separators and status bar
@@ -80,7 +80,7 @@ class TUIInterface:
top_height = height - 2 # -2 for status bar
bottom_height = 0
left_width = int(width * 0.6)
left_width = int(width * 0.7) # Increased from 60% to 70% for better IP:port display
right_width = width - left_width - 1 # -1 for separator
# Draw title