Ignore missing options when loading full_print_config (because this is almost always because we ignored it when loading from a regular config).

This commit is contained in:
Joseph Lenox 2019-04-13 13:44:23 -05:00 committed by Joseph Lenox
parent 7d3a5a299b
commit 7d7223eeaf

View File

@ -81,7 +81,7 @@ int CLI::run(int argc, char **argv) {
this->print_config.normalize();
Slic3r::Log::debug("CLI") << "Print config normalized" << std::endl;
// create a static (full) print config to be used in our logic
this->full_print_config.apply(this->print_config);
this->full_print_config.apply(this->print_config, true);
Slic3r::Log::debug("CLI") << "Full print config created" << std::endl;
// validate config
try {