FIX: the timelapse gcode is not generated in spiral vase mode
jira: none Change-Id: Ibb73fab7f51e5a81bd32b6e5df18a095f2aa30d3
This commit is contained in:
parent
69c2947daf
commit
22499a552e
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Bambulab",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "02.00.00.41",
|
||||
"version": "02.00.00.42",
|
||||
"force_update": "0",
|
||||
"description": "the initial version of BBL configurations",
|
||||
"machine_model_list": [
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -3603,8 +3603,8 @@ GCode::LayerResult GCode::process_layer(
|
|||
bool is_multi_extruder = m_config.nozzle_diameter.size() > 1;
|
||||
|
||||
bool need_insert_timelapse_gcode_for_traditional = false;
|
||||
if (!m_spiral_vase && (!m_wipe_tower || !m_wipe_tower->enable_timelapse_print())) {
|
||||
need_insert_timelapse_gcode_for_traditional = (is_i3_printer || is_multi_extruder);
|
||||
if (!m_wipe_tower || !m_wipe_tower->enable_timelapse_print()) {
|
||||
need_insert_timelapse_gcode_for_traditional = ((is_i3_printer && !m_spiral_vase)|| is_multi_extruder);
|
||||
}
|
||||
|
||||
bool has_insert_timelapse_gcode = false;
|
||||
|
|
Loading…
Reference in New Issue