1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-30 11:05:50 +00:00

Fix the 'extruder' behavior in CLI and test that Print::Simple accepts an incomplete DynamicConfig object

This commit is contained in:
Alessandro Ranellucci
2014-04-05 10:18:00 +02:00
parent 6f3844c1ba
commit d2a6194960
2 changed files with 14 additions and 3 deletions
+4 -1
View File
@@ -72,7 +72,10 @@ if ($opt{load}) {
# merge configuration
my $config = Slic3r::Config->new_from_defaults;
$config->apply($_) for @external_configs, $cli_config;
foreach my $c (@external_configs, $cli_config) {
$c->normalize; # expand shortcuts before applying, otherwise destination values would be already filled with defaults
$config->apply($c);
}
# save configuration
if ($opt{save}) {