From bae197eecad7f4690dff25dab706f3985320ce02 Mon Sep 17 00:00:00 2001 From: Russell Schmidt Date: Sun, 2 Feb 2025 17:02:09 -0600 Subject: [PATCH] Add new options to help window --- ui/curses_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/curses_ui.py b/ui/curses_ui.py index b8a2bc2..ad89a9a 100644 --- a/ui/curses_ui.py +++ b/ui/curses_ui.py @@ -41,7 +41,7 @@ def draw_node_details(): draw_centered_text_field(function_win, nodestr, 0, get_color("commands")) def draw_function_win(): - cmds = ["↑→↓← = Select", " ENTER = Send", " ` = Settings", " ^P = Packet Log", " ESC = Quit"] + cmds = ["↑→↓← = Select", " ENTER = Send", " ` = Settings", " ^P = Packet Log", " ESC = Quit", " ^t = Traceroute", " ^d = Archive Chat"] function_str = "" for s in cmds: if(len(function_str) + len(s) < function_win.getmaxyx()[1]):