mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 16:01:30 +00:00
change host on select
This commit is contained in:
parent
4ba945f8bd
commit
4ef252e730
1 changed files with 3 additions and 2 deletions
|
@ -1001,10 +1001,11 @@ class BitcoinGUI:
|
||||||
vbox.pack_start(host, False,False, 5)
|
vbox.pack_start(host, False,False, 5)
|
||||||
vbox.pack_start(scroll)
|
vbox.pack_start(scroll)
|
||||||
|
|
||||||
def my_treeview_cb(treeview, path, view_column):
|
def my_treeview_cb(treeview):
|
||||||
|
path, view_column = treeview.get_cursor()
|
||||||
host = server_list.get_value( server_list.get_iter(path), 0)
|
host = server_list.get_value( server_list.get_iter(path), 0)
|
||||||
host_entry.set_text(host+":50000")
|
host_entry.set_text(host+":50000")
|
||||||
treeview.connect('row-activated', my_treeview_cb)
|
treeview.connect('cursor-changed', my_treeview_cb)
|
||||||
|
|
||||||
dialog.show()
|
dialog.show()
|
||||||
r = dialog.run()
|
r = dialog.run()
|
||||||
|
|
Loading…
Add table
Reference in a new issue