Browse Source

Fix prior; keep tx dialog as top-level window

master
Neil Booth 10 years ago
parent
commit
d9a84875dc
  1. 2
      gui/qt/transaction_dialog.py

2
gui/qt/transaction_dialog.py

@ -44,7 +44,7 @@ class TxDialog(QDialog, MessageBoxMixin):
'''Transactions in the wallet will show their description.
Pass desc to give a description for txs not yet in the wallet.
'''
QDialog.__init__(self, parent)
QDialog.__init__(self, parent=None) # Top-level window
self.tx = tx
self.tx.deserialize()
self.main_window = parent

Loading…
Cancel
Save