Require --default-acceleration when other acceleration settings are used
This commit is contained in:
parent
99816e07a6
commit
67f5b7ab14
1 changed files with 5 additions and 0 deletions
|
@ -1385,6 +1385,11 @@ sub validate {
|
||||||
die "Invalid value for --extrusion-multiplier\n"
|
die "Invalid value for --extrusion-multiplier\n"
|
||||||
if defined first { $_ <= 0 } @{$self->extrusion_multiplier};
|
if defined first { $_ <= 0 } @{$self->extrusion_multiplier};
|
||||||
|
|
||||||
|
# --default-acceleration
|
||||||
|
die "Invalid zero value for --default-acceleration when using other acceleration settings\n"
|
||||||
|
if ($self->perimeter_acceleration || $self->infill_acceleration || $self->bridge_acceleration || $self->first_layer_acceleration)
|
||||||
|
&& !$self->default_acceleration;
|
||||||
|
|
||||||
# general validation, quick and dirty
|
# general validation, quick and dirty
|
||||||
foreach my $opt_key (keys %$Options) {
|
foreach my $opt_key (keys %$Options) {
|
||||||
my $opt = $Options->{$opt_key};
|
my $opt = $Options->{$opt_key};
|
||||||
|
|
Loading…
Reference in a new issue