From 19754599b7c08ed14a44b2cab715a7100afa41d3 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Thu, 12 Feb 2015 17:52:49 +0100 Subject: [PATCH] Call the parseArguments method so we actually parse the command line arguments during start --- PrinterApplication.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PrinterApplication.py b/PrinterApplication.py index 10306b93dd..acb854a29c 100644 --- a/PrinterApplication.py +++ b/PrinterApplication.py @@ -34,6 +34,8 @@ class PrinterApplication(QtApplication): self._plugin_registry.loadPlugin('CuraEngineBackend') def run(self): + self.parseArguments() + controller = self.getController() controller.setActiveView("MeshView")