FIX: fix the slicing result different issue
when move volume in objects copied from other object the result is not correct Change-Id: Ieebc586f11c42429902d653e871c038d096783e8
This commit is contained in:
parent
a759df62c4
commit
7102a1e235
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue