Freeze button in GTK receive tab.
This commit is contained in:
15
gui/gtk.py
15
gui/gtk.py
@@ -1060,6 +1060,21 @@ class ElectrumWindow:
|
|||||||
button.show()
|
button.show()
|
||||||
hbox.pack_start(button,False)
|
hbox.pack_start(button,False)
|
||||||
|
|
||||||
|
if is_recv:
|
||||||
|
button = gtk.Button("Freeze")
|
||||||
|
def freeze_address(w, treeview, liststore, wallet):
|
||||||
|
path, col = treeview.get_cursor()
|
||||||
|
if path:
|
||||||
|
address = liststore.get_value( liststore.get_iter(path), 0)
|
||||||
|
if address in wallet.frozen_addresses:
|
||||||
|
wallet.unfreeze(address)
|
||||||
|
else:
|
||||||
|
wallet.freeze(address)
|
||||||
|
self.update_receiving_tab()
|
||||||
|
button.connect("clicked", freeze_address, treeview, liststore, self.wallet)
|
||||||
|
button.show()
|
||||||
|
hbox.pack_start(button,False)
|
||||||
|
|
||||||
if not is_recv:
|
if not is_recv:
|
||||||
button = gtk.Button("Pay to")
|
button = gtk.Button("Pay to")
|
||||||
def payto(w, treeview, liststore):
|
def payto(w, treeview, liststore):
|
||||||
|
|||||||
Reference in New Issue
Block a user