Inform the user how to navigate connection manager

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]
This commit is contained in:
Nogare 2012-03-14 16:50:56 -04:00 committed by Asmageddon
parent 03fefc279b
commit f33a6a68e4

View File

@ -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")