Fix indentation and spacing; use print.arrange rather than making another call to the config.

This commit is contained in:
Joseph Lenox 2019-04-13 13:48:40 -05:00 committed by Joseph Lenox
parent 7d7223eeaf
commit 0230138bb2

View File

@ -317,7 +317,7 @@ int CLI::run(int argc, char **argv) {
print.arrange = !this->config.getBool("dont_arrange", false);
print.center = !this->config.has("center")
&& !this->config.has("align_xy")
&& !this->config.getBool("dont_arrange",false);
&& print.arrange;
Slic3r::Log::error("CLI") << "Arrange: " << print.arrange<< ", center: " << print.center << std::endl;
print.set_model(model);