Browse Source

Merge #423: don't use native dialog for schedule open

02c2b4b don't use native dialog for schedule open (AdamISZ)
master
AdamISZ 6 years ago
parent
commit
98f2b54409
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  1. 3
      scripts/joinmarket-qt.py

3
scripts/joinmarket-qt.py

@ -356,7 +356,8 @@ class SpendTab(QWidget):
current_path = os.path.dirname(os.path.realpath(__file__))
firstarg = QFileDialog.getOpenFileName(self,
'Choose Schedule File',
directory=current_path)
directory=current_path,
options=QFileDialog.DontUseNativeDialog)
#TODO validate the schedule
log.debug('Looking for schedule in: ' + str(firstarg))
if not firstarg:

Loading…
Cancel
Save