Fixed missing support interface layers in G-code after
Refactoring of Layers: Reworked G-code export...
This commit is contained in:
Vojtech Bubnik 2022-12-08 13:05:35 +01:00
parent 7f6f63db0f
commit dee9fb797c

View File

@ -2327,7 +2327,7 @@ void GCode::process_layer_single_object(
interface_extruder = dontcare_extruder;
}
bool extrude_support = has_support && support_extruder == extruder_id;
bool extrude_interface = interface_extruder && interface_extruder == extruder_id;
bool extrude_interface = has_interface && interface_extruder == extruder_id;
if (extrude_support || extrude_interface) {
init_layer_delayed();
m_layer = layer_to_print.support_layer;