From f33a6a68e4bccc53e83bb1c04d46a2c50328b1fb Mon Sep 17 00:00:00 2001 From: Nogare Date: Wed, 14 Mar 2012 16:50:56 -0400 Subject: [PATCH] Inform the user how to navigate connection manager MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added a quick line to let the user know to user the up & down arrows when adding a host[it isn't as intuitive as you might think] Using tab to switch input fields when adding a host is something that *should* be added in the futureā€¦ [more intuitive] --- deluge/ui/console/modes/connectionmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/console/modes/connectionmanager.py b/deluge/ui/console/modes/connectionmanager.py index 15e8bf613..de946ed5f 100644 --- a/deluge/ui/console/modes/connectionmanager.py +++ b/deluge/ui/console/modes/connectionmanager.py @@ -152,7 +152,7 @@ class ConnectionManager(BaseMode): def __add_popup(self): self.inlist = False - self.popup = InputPopup(self,"Add Host (esc to cancel)",close_cb=self.__do_add) + self.popup = InputPopup(self,"Add Host (up & down arrows to navigate, esc to cancel)",close_cb=self.__do_add) self.popup.add_text_input("Hostname:","hostname") self.popup.add_text_input("Port:","port") self.popup.add_text_input("Username:","username")