chiark / gitweb /
Remove useless -r option
authorYouness Alaoui <kakaroto@kakaroto.homelinux.net>
Tue, 2 Jun 2015 18:18:15 +0000 (14:18 -0400)
committerYouness Alaoui <kakaroto@kakaroto.homelinux.net>
Tue, 2 Jun 2015 18:18:15 +0000 (14:18 -0400)
Fixes issue #62

Cura/cura.py

index 765580685fb3b60ff432c30bf2ece8822a0ea872..27bac0d3902f1d2571c0029ffc95adca9288a52d 100644 (file)
@@ -19,8 +19,6 @@ def main():
        parser = OptionParser(usage="usage: %prog [options] <filename>.stl")
        parser.add_option("-i", "--ini", action="store", type="string", dest="profileini",
                help="Load settings from a profile ini file")
-       parser.add_option("-r", "--print", action="store", type="string", dest="printfile",
-               help="Open the printing interface, instead of the normal cura interface.")
        parser.add_option("-p", "--profile", action="store", type="string", dest="profile",
                help="Internal option, do not use!")
        parser.add_option("-s", "--slice", action="store_true", dest="slice",
@@ -48,10 +46,7 @@ def main():
        else:
                profile.loadProfile(profile.getDefaultProfilePath(), True)
 
-       if options.printfile is not None:
-               from Cura.gui import printWindow
-               printWindow.startPrintInterface(options.printfile)
-       elif options.slice is not None:
+       if options.slice is not None:
                from Cura.util import sliceEngine
                from Cura.util import objectScene
                from Cura.util import meshLoader