COM: Adding missing argument for DCOM

This commit is contained in:
Thomas Karl Pietrowski 2017-12-08 15:19:28 +01:00
parent a2d327af7f
commit 00a77da9d4

View File

@ -570,6 +570,7 @@ class CuraApplication(QtApplication):
parser.add_argument("file", nargs="*", help="Files to load after starting the application.") parser.add_argument("file", nargs="*", help="Files to load after starting the application.")
parser.add_argument("--single-instance", action="store_true", default=False) parser.add_argument("--single-instance", action="store_true", default=False)
parser.add_argument("--headless", action = "store_true", default=False) parser.add_argument("--headless", action = "store_true", default=False)
parser.add_argument("-Embedding", action="store_true", default=False) # Commandline option set my DCOM (Windows Automation)
# Set up a local socket server which listener which coordinates single instances Curas and accepts commands. # Set up a local socket server which listener which coordinates single instances Curas and accepts commands.
def _setUpSingleInstanceServer(self): def _setUpSingleInstanceServer(self):