adjust widths

This commit is contained in:
pdxlocations
2024-04-01 22:48:18 -07:00
parent 582f1ea32a
commit 24d9bdec9b
+3 -3
View File
@@ -316,9 +316,9 @@ def main(stdscr):
# Define window dimensions and positions
entry_win = curses.newwin(3, width, 0, 0)
channel_width = width // 8
messages_width = 4 * (width // 8)
nodes_width = 3 * (width // 8)
channel_width = 3 * (width // 16)
nodes_width = 5 * (width // 16)
messages_width = width - channel_width - nodes_width
channel_win = curses.newwin(height - 6, channel_width, 3, 0)
messages_win = curses.newwin(height - 6, messages_width, 3, channel_width)