From dccdb00dcd1e6c8941fa80b36844ffbf507f9b85 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Tue, 12 Aug 2025 21:32:38 -0700 Subject: [PATCH] Redraw settings menu on new node --- contact/ui/contact_ui.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contact/ui/contact_ui.py b/contact/ui/contact_ui.py index cf0d881..9bba87b 100644 --- a/contact/ui/contact_ui.py +++ b/contact/ui/contact_ui.py @@ -653,6 +653,9 @@ def draw_node_list() -> None: curses.curs_set(1) entry_win.refresh() + if ui_state.current_window == 4: + menu_state.need_redraw = True + def select_channel(idx: int) -> None: """Select a channel by index and update the UI state accordingly."""