Fix prior; keep tx dialog as top-level window

This commit is contained in:
Neil Booth 2016-01-17 13:41:09 +09:00
parent d9a13a5dd1
commit d9a84875dc
1 changed files with 1 additions and 1 deletions

View File

@ -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