From 7102a1e2356c95ad0edafe0897336e4b798620f4 Mon Sep 17 00:00:00 2001 From: "lane.wei" Date: Mon, 30 Jan 2023 17:10:26 +0800 Subject: [PATCH] FIX: fix the slicing result different issue when move volume in objects copied from other object the result is not correct Change-Id: Ieebc586f11c42429902d653e871c038d096783e8 --- src/libslic3r/Print.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index 17f2b3a52..5beba7d5b 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -1389,6 +1389,8 @@ void Print::process(bool use_cache) return false; if (model_volume1.mesh_ptr() != model_volume2.mesh_ptr()) return false; + if (!(model_volume1.get_transformation() == model_volume2.get_transformation())) + return false; has_extruder1 = model_volume1.config.has("extruder"); has_extruder2 = model_volume2.config.has("extruder"); if ((has_extruder1 != has_extruder2)