From 8fa0468787b2a375668c67c789be49bec696e48e Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Fri, 10 Jul 2015 11:14:59 +0200 Subject: [PATCH] Also add the parent class' command line arguments Contributes to #96 --- cura/CuraApplication.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 5e2ba4a08a..f5a89df498 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -110,6 +110,7 @@ class CuraApplication(QtApplication): self._plugin_registry.loadPlugin("CuraEngineBackend") def addCommandLineOptions(self, parser): + super().addCommandLineOptions(parser) parser.add_argument("file", nargs="*", help="Files to load after starting the application.") def run(self):