From 022bfff6a89304f2fd22e7a3dfb11068fa7ddf01 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Tue, 29 Jul 2025 09:22:33 -0700 Subject: [PATCH] current window 4 --- 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 a0adf59..bee8932 100644 --- a/contact/ui/contact_ui.py +++ b/contact/ui/contact_ui.py @@ -364,7 +364,10 @@ def handle_backspace(entry_win: curses.window, input_text: str) -> str: def handle_backtick(stdscr: curses.window) -> None: """Handle backtick key events to open the settings menu.""" curses.curs_set(0) + previous_window = ui_state.current_window + ui_state.current_window = 4 settings_menu(stdscr, interface_state.interface) + ui_state.current_window = previous_window curses.curs_set(1) refresh_node_list() handle_resize(stdscr, False)