mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
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:
parent
03fefc279b
commit
f33a6a68e4
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue