Minor help text tweak
The help text for "enter" on the connection panel was incorrect, I've pushed a proposed fix to the timhack branch on git://github.com/twilde/arm.git, simple one-line patch against master HEAD also inlined below in git format-patch style, not sure which is easier. :)
src/cli/connections/connPanel.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/cli/connections/connPanel.py b/src/cli/connections/connPanel.py index 9745176..3a8a07c 100644 --- a/src/cli/connections/connPanel.py +++ b/src/cli/connections/connPanel.py @@ -308,7 +308,7 @@ class ConnectionPanel(panel.Panel, threading.Thread): options.append(("down arrow", "scroll down a line", None)) options.append(("page up", "scroll up a page", None)) options.append(("page down", "scroll down a page", None))
- options.append(("enter", "edit configuration option", None))
-
options.append(("enter", "toggle connection details", None)) options.append(("d", "raw consensus descriptor", None))
if self.isClientsAllowed(): --