Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2020-01-20 11:41:48 +0300
committerGhostkeeper <rubend@tutanota.com>2020-01-20 11:41:48 +0300
commit3b1e88e49c005657e463f6c76c505ad253ce8636 (patch)
tree40ce8971abd10d941eed0f6caaf901e116e7a4e8 /resources/definitions/strateo3d.def.json
parent0e5654e44b2e9ea1d827dea87248b140a987d7ad (diff)
Limit retraction_combing_max_distance to be no lower than retraction_min_travel
Retraction_min_travel overrides retraction_combing_max_distance in CuraEngine, so it has no effect to make it any lower. Contributes to issue CURA-6860.
Diffstat (limited to 'resources/definitions/strateo3d.def.json')
-rw-r--r--resources/definitions/strateo3d.def.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/definitions/strateo3d.def.json b/resources/definitions/strateo3d.def.json
index 2ee3650404..177e208ebc 100644
--- a/resources/definitions/strateo3d.def.json
+++ b/resources/definitions/strateo3d.def.json
@@ -93,7 +93,7 @@
"prime_tower_position_y": { "value": "machine_depth - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - 1" },
"retraction_amount": { "default_value": 1.5 },
"retraction_combing": { "default_value": "all" },
- "retraction_combing_max_distance": { "default_value": 5 },
+ "retraction_combing_max_distance": { "value": "max(5, retraction_min_travel)" },
"retraction_count_max": { "default_value": 15 },
"retraction_hop": { "value": "2" },
"retraction_hop_enabled": { "value": "extruders_enabled_count > 1" },