From f8d677eee8711b145399706e94c4fbea9d39f6fa Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 22 Sep 2015 11:52:04 +0200 Subject: [PATCH] Connected tool operation events (again?) Fixes Ultimaker/Cura#418 --- plugins/CuraEngineBackend/CuraEngineBackend.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index 77fda73b43..8fc6513e80 100644 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -77,6 +77,8 @@ class CuraEngineBackend(Backend): self._message = None self.backendConnected.connect(self._onBackendConnected) + Application.getInstance().getController().toolOperationStarted.connect(self._onToolOperationStarted) + Application.getInstance().getController().toolOperationStopped.connect(self._onToolOperationStopped) ## Get the command that is used to call the engine. # This is usefull for debugging and used to actually start the engine