From d9a84875dc1103882722ceb2884cbd964cadd298 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sun, 17 Jan 2016 13:41:09 +0900 Subject: [PATCH] Fix prior; keep tx dialog as top-level window --- gui/qt/transaction_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/transaction_dialog.py b/gui/qt/transaction_dialog.py index 277a7a80..16f346e1 100644 --- a/gui/qt/transaction_dialog.py +++ b/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