Hopefully a fix of

"Layer editing does not trigger reslicing with Background Processing enabled"
https://github.com/prusa3d/Slic3r/issues/293
This commit is contained in:
bubnikv 2017-06-09 13:27:35 +02:00
parent 6ce832e439
commit 958c6553e7
5 changed files with 19 additions and 20 deletions

View file

@ -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;