From 2802d074bb506d1b4fd355854f2bdbc7f9925eb7 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 10 Apr 2014 14:01:24 +0900 Subject: [PATCH] disable previous osx workaround that may be causing crash on file dialog --- aqt/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/utils.py b/aqt/utils.py index 8f96286b8..b275ec020 100644 --- a/aqt/utils.py +++ b/aqt/utils.py @@ -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)