--- a/LPCManager.py Thu Jul 06 14:47:47 2017 +0200
+++ b/LPCManager.py Mon Jul 10 13:30:36 2017 +0200
@@ -120,7 +120,7 @@
_lpcmanager_path = os.path.split(__file__)[0]
sys.path.append(os.path.join(_lpcmanager_path, "SmartehWidgets"))
-import SmartehScreenSplash as splash
+import SmartehWidgets.SmartehScreenSplash as splash from POULibrary import POULibrary
@@ -1519,10 +1519,6 @@
def __Build(args, save, frame=None):
- thread = Thread(target=frame.Show)
build_succeeded = ProjectController._Build(args)
@@ -1547,6 +1543,11 @@
self._Clean(building=True)
frame = splash.SmartehScreenSplash(self.AppFrame, bitmap=GetPath(splash.SPLASH_FN))
+ thread = Thread(target=frame.ShowModal) build_thread = Thread(name="OnBuildThread", target=__Build, args=(self,save, frame))
build_thread.daemon = True
@@ -2849,7 +2850,7 @@
def CmdThreadProc(CTR, Log):
for function, (arg_types, opt) in {"Exit": ([], 0),