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
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-06-09 14:27:35 +0300
committerbubnikv <bubnikv@gmail.com>2017-06-09 14:27:35 +0300
commit958c6553e79737895c8e63d66350d118b722be09 (patch)
tree9473000454dc814a421e5a061ef8ebbf9413ccb1 /slic3r.pl
parent6ce832e439c8646d9fcd65b72bd6b788e52f9f88 (diff)
Hopefully a fix of
"Layer editing does not trigger reslicing with Background Processing enabled" https://github.com/prusa3d/Slic3r/issues/293
Diffstat (limited to 'slic3r.pl')
-rwxr-xr-xslic3r.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/slic3r.pl b/slic3r.pl
index 681b2fa6d..0cd814ce5 100755
--- a/slic3r.pl
+++ b/slic3r.pl
@@ -214,8 +214,11 @@ if (@ARGV) { # slicing from command line
output_file => $opt{output},
);
+ # This is delegated to C++ PrintObject::apply_config().
$sprint->apply_config($config);
$sprint->set_model($model);
+ # Do the apply_config once again to validate the layer height profiles at all the newly added PrintObjects.
+ $sprint->apply_config($config);
if ($opt{export_svg}) {
$sprint->export_svg;