re-focus on TUI and core
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user