From 435eb90259049bc91428227abc36d18cd1ac97a3 Mon Sep 17 00:00:00 2001 From: daid Date: Tue, 25 Mar 2014 17:14:13 +0100 Subject: [PATCH] Workaround for http://umforum.ultimaker.com/index.php?/topic/4905-cura-1403-crashing-on-kubuntu/ --- Cura/gui/app.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Cura/gui/app.py b/Cura/gui/app.py index 3140e33b..10cbd597 100644 --- a/Cura/gui/app.py +++ b/Cura/gui/app.py @@ -7,8 +7,11 @@ import shutil import glob import warnings -#Only import the _core to save import time -import wx._core +try: + #Only try to import the _core to save import time + import wx._core +except ImportError: + import wx class CuraApp(wx.App): -- 2.30.2