From e15f6257160452656b970a3eaa0685a5a861de0d Mon Sep 17 00:00:00 2001 From: Russell Schmidt Date: Wed, 22 Jan 2025 17:14:49 -0600 Subject: [PATCH] Fix default channel messages not showing on start --- ui/curses_ui.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/curses_ui.py b/ui/curses_ui.py index d5d7fc3..5a4b584 100644 --- a/ui/curses_ui.py +++ b/ui/curses_ui.py @@ -244,10 +244,6 @@ def main_ui(stdscr): draw_centered_text_field(function_win, f"↑→↓← = Select ENTER = Send ` = Settings ^P = Packet Log ESC = Quit") - draw_channel_list() - draw_node_list() - draw_messages_window(True) - # Draw boxes around windows channel_win.box() entry_win.box() @@ -267,6 +263,10 @@ def main_ui(stdscr): entry_win.keypad(True) curses.curs_set(1) + draw_channel_list() + draw_node_list() + draw_messages_window(True) + while True: draw_text_field(entry_win, f"Input: {input_text}")