From ffa0e3e5e2d80db6efa67869fc510080f0f1677e Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 7 Apr 2017 11:02:53 +0200 Subject: [PATCH] CuraApplication now also registers object defined by QTApplication CURA-3633 --- cura/CuraApplication.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index d407ae1b85..30fd7e95a2 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -667,6 +667,7 @@ class CuraApplication(QtApplication): # # \param engine The QML engine. def registerObjects(self, engine): + super().registerObjects(engine) engine.rootContext().setContextProperty("Printer", self) engine.rootContext().setContextProperty("CuraApplication", self) self._print_information = PrintInformation.PrintInformation()