Also add the parent class' command line arguments

Contributes to #96
This commit is contained in:
Arjen Hiemstra 2015-07-10 11:14:59 +02:00
parent f4153fa63e
commit 8fa0468787

View file

@ -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):