commit b2bfd5af1f7f44337e69655c9ef86fbd44a316fc
parent 3446e1fd565a367fd488f0d723fef3d6deb39642
Author: Neil Booth <kyuupichan@gmail.com>
Date: Sat, 4 Jul 2015 16:37:01 +0900
Show the broadcast button even if broadcast.
It may not actually be broadcast or relayed for various reasons.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/qt/transaction_dialog.py b/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: