Browse Source

Show the broadcast button even if broadcast.

It may not actually be broadcast or relayed for various reasons.
283
Neil Booth 10 years ago
parent
commit
b2bfd5af1f
  1. 2
      gui/qt/transaction_dialog.py

2
gui/qt/transaction_dialog.py

@ -175,7 +175,7 @@ class TxDialog(QWidget):
else:
time_str = _('Pending')
status = _("%d confirmations")%conf
elif not self.broadcast:
else:
self.broadcast_button.show()
# cannot broadcast when offline
if self.parent.network is None:

Loading…
Cancel
Save