disable previous osx workaround that may be causing crash on file dialog

This commit is contained in:
Damien Elmes 2014-04-10 14:01:24 +09:00
parent d56cf3c6b0
commit 2802d074bb

View file

@ -240,7 +240,7 @@ def getFile(parent, title, cb, filter="*.*", dir=None, key=None):
ret = []
def accept():
# work around an osx crash
aqt.mw.app.processEvents()
#aqt.mw.app.processEvents()
file = unicode(list(d.selectedFiles())[0])
if dirkey:
dir = os.path.dirname(file)