Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Cura/gui/app.py')
-rw-r--r--Cura/gui/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cura/gui/app.py b/Cura/gui/app.py
index 7dff8e9d49..ce167b26a3 100644
--- a/Cura/gui/app.py
+++ b/Cura/gui/app.py
@@ -90,7 +90,7 @@ class CuraApp(wx.App):
sock.bind(("127.0.0.1", port))
while True:
data, addr = sock.recvfrom(2048)
- self.mainWindow.OnDropFiles(data.split('\0'))
+ wx.callAfter(self.mainWindow.OnDropFiles, data.split('\0'))
except:
pass