From 36fdf26faf219bdd727673f94901dd08d0b56d3e Mon Sep 17 00:00:00 2001 From: Adam Gibson Date: Sat, 26 Aug 2017 23:44:06 +0300 Subject: [PATCH] dont use native filedialog (prevents Qt crash condition) --- scripts/joinmarket-qt.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/joinmarket-qt.py b/scripts/joinmarket-qt.py index 7b4cb3c..657a32f 100644 --- a/scripts/joinmarket-qt.py +++ b/scripts/joinmarket-qt.py @@ -1326,7 +1326,8 @@ class JMMainWindow(QMainWindow): current_path = os.path.join(current_path, 'wallets') firstarg = QFileDialog.getOpenFileName(self, 'Choose Wallet File', - directory=current_path) + directory=current_path, + options=QFileDialog.DontUseNativeDialog) #TODO validate the file looks vaguely like a wallet file log.debug('Looking for wallet in: ' + firstarg) if not firstarg: