From 3fb1335be30c60adf6e16f4d758ca7c72c458095 Mon Sep 17 00:00:00 2001 From: Russell Schmidt Date: Thu, 3 Jul 2025 12:10:56 -0500 Subject: [PATCH] Add node name to traceroute confirm dialog --- contact/ui/contact_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contact/ui/contact_ui.py b/contact/ui/contact_ui.py index e8fa589..03bd64a 100644 --- a/contact/ui/contact_ui.py +++ b/contact/ui/contact_ui.py @@ -336,7 +336,7 @@ def handle_ctrl_t(stdscr: curses.window) -> None: curses.curs_set(0) # Hide cursor contact.ui.dialog.dialog( stdscr, - "Traceroute Sent", + f"Traceroute Sent to: {get_name_from_database(ui_state.node_list[ui_state.selected_node])}", "Results will appear in messages window.\nNote: Traceroute is limited to once every 30 seconds.", ) curses.curs_set(1) # Show cursor again