From fecd89fa38c1820473c38d133ac6cb5bf7558b5a Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Thu, 19 Dec 2019 09:21:57 +0100 Subject: [PATCH] Do not allow to apply reload from disk command to objects whose mesh has been modified after non uniform scale operations --- src/libslic3r/Model.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libslic3r/Model.cpp b/src/libslic3r/Model.cpp index 8c281318e2..5167337086 100644 --- a/src/libslic3r/Model.cpp +++ b/src/libslic3r/Model.cpp @@ -1359,6 +1359,8 @@ void ModelObject::bake_xy_rotation_into_meshes(size_t instance_idx) model_volume->set_mirror(Vec3d(1., 1., 1.)); // Move the reference point of the volume to compensate for the change of the instance trafo. model_volume->set_offset(volume_offset_correction * volume_trafo.get_offset()); + // reset the source to disable reload from disk + model_volume->source = ModelVolume::Source(); } this->invalidate_bounding_box();