From 722fdd7cd57977124331b4fde4fd234e9c48c8e0 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 25 Sep 2018 16:22:28 +0200 Subject: [PATCH] Fixed CLI --dont-arrange command --- src/libslic3r/PrintConfig.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 05b1b4bb58..46df2b1c08 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2617,6 +2617,7 @@ CLIConfigDef::CLIConfigDef() def->tooltip = L("Don't arrange the objects on the build plate. The model coordinates " "define the absolute positions on the build plate. " "The option --center will be ignored."); + def->cli = "dont-arrange"; def->default_value = new ConfigOptionBool(false); def = this->add("datadir", coString);