mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-02 06:00:43 +08:00
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:
parent
7d3a5a299b
commit
7d7223eeaf
@ -81,7 +81,7 @@ int CLI::run(int argc, char **argv) {
|
|||||||
this->print_config.normalize();
|
this->print_config.normalize();
|
||||||
Slic3r::Log::debug("CLI") << "Print config normalized" << std::endl;
|
Slic3r::Log::debug("CLI") << "Print config normalized" << std::endl;
|
||||||
// create a static (full) print config to be used in our logic
|
// 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;
|
Slic3r::Log::debug("CLI") << "Full print config created" << std::endl;
|
||||||
// validate config
|
// validate config
|
||||||
try {
|
try {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user