From b0fc0429cba6f397be5a727647e735d28cead8c5 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 25 Nov 2018 18:22:11 +0100 Subject: [PATCH] Bugfix: --dont-arrange was reported as not implemented --- src/slic3r.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/slic3r.cpp b/src/slic3r.cpp index 6cea47e75..b9680ae03 100644 --- a/src/slic3r.cpp +++ b/src/slic3r.cpp @@ -170,6 +170,8 @@ int CLI::run(int argc, char **argv) { // this affects volumes: model.translate(-(bb.min.x - p.x), -(bb.min.y - p.y), -bb.min.z); } + } else if (opt_key == "dont_arrange") { + // do nothing - this option alters other transform options } else if (opt_key == "rotate") { for (auto &model : this->models) for (auto &o : model.objects)