1
0

Split tx dialog buttons

The "actions" (sign, broadcast, send to cosigner, verify GA instant)
go on the RHS next to the "Cancel" button.

Copy, QR code and save go on the left.
This commit is contained in:
Neil Booth
2015-06-27 11:48:27 +09:00
parent 547886d6f1
commit c35485c1c2
3 changed files with 10 additions and 5 deletions

View File

@@ -115,7 +115,7 @@ class Plugin(BasePlugin):
def transaction_dialog(self, d):
self.send_button = b = QPushButton(_("Send to cosigner"))
b.clicked.connect(lambda: self.do_send(d.tx))
d.buttons.insert(2, b)
d.buttons.insert(0, b)
self.transaction_dialog_update(d)
@hook