Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-09-23 13:59:20 +0300
committerbubnikv <bubnikv@gmail.com>2016-09-23 13:59:20 +0300
commit565146d9d1be222693901a26acb5a3c65dd8ac65 (patch)
tree5d71a1ed2c1709f6574631ba7e4d33762a7be11d /lib
parent6e97b9bb73fb6b028b23c98a5212c9162c836e53 (diff)
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.
Diffstat (limited to 'lib')
-rw-r--r--lib/Slic3r/GCode/Reader.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Slic3r/GCode/Reader.pm b/lib/Slic3r/GCode/Reader.pm
index 6743e6f83..5763b3848 100644
--- a/lib/Slic3r/GCode/Reader.pm
+++ b/lib/Slic3r/GCode/Reader.pm
@@ -22,7 +22,7 @@ sub apply_print_config {
sub clone {
my $self = shift;
return (ref $self)->new(
- map { $_ => $self->$_ } (@AXES, 'F', '_extrusion_axis'),
+ map { $_ => $self->$_ } (@AXES, 'F', '_extrusion_axis', 'config'),
);
}