Fix of a spiral vase with realtive extruder distances enabled.

The clone function is used by the SpiralVase.pm only, so the change
is safe.
This commit is contained in:
bubnikv 2016-09-23 12:59:20 +02:00
parent 6e97b9bb73
commit 565146d9d1

View File

@ -22,7 +22,7 @@ sub apply_print_config {
sub clone { sub clone {
my $self = shift; my $self = shift;
return (ref $self)->new( return (ref $self)->new(
map { $_ => $self->$_ } (@AXES, 'F', '_extrusion_axis'), map { $_ => $self->$_ } (@AXES, 'F', '_extrusion_axis', 'config'),
); );
} }