Fix the 'extruder' behavior in CLI and test that Print::Simple accepts an incomplete DynamicConfig object
This commit is contained in:
parent
6f3844c1ba
commit
d2a6194960
@ -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}) {
|
||||
|
12
t/multi.t
12
t/multi.t
@ -1,4 +1,4 @@
|
||||
use Test::More tests => 7;
|
||||
use Test::More tests => 8;
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
@ -67,7 +67,15 @@ use Slic3r::Test;
|
||||
}
|
||||
|
||||
{
|
||||
my $config = Slic3r::Config->new_from_defaults;
|
||||
my $config = Slic3r::Config->new;
|
||||
$config->set('extruder', 2);
|
||||
|
||||
my $print = Slic3r::Test::init_print('20mm_cube', config => $config);
|
||||
like Slic3r::Test::gcode($print), qr/ T1/, 'extruder shortcut';
|
||||
}
|
||||
|
||||
{
|
||||
my $config = Slic3r::Config->new;
|
||||
$config->set('perimeter_extruder', 2);
|
||||
$config->set('infill_extruder', 2);
|
||||
$config->set('support_material_extruder', 2);
|
||||
|
Loading…
Reference in New Issue
Block a user