mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-29 01:28:55 +08:00
Add minima for retraction prime speed
Otherwise the automated inheritance function makes it negative sometimes. Contributes to issue #6806.
This commit is contained in:
parent
8b9e5c5154
commit
eb54a62eca
@ -35,7 +35,7 @@ retraction_combing = noskin
|
||||
retraction_hop_enabled = True
|
||||
retraction_min_travel = =machine_nozzle_size * 3
|
||||
retraction_retract_speed = =retraction_speed
|
||||
retraction_prime_speed = =retraction_speed - 30
|
||||
retraction_prime_speed = =max(retraction_speed - 30, 5)
|
||||
roofing_layer_count = 1
|
||||
skin_line_width = =line_width * 1.2
|
||||
skin_outline_count = 2
|
||||
|
@ -35,7 +35,7 @@ retraction_combing = noskin
|
||||
retraction_hop_enabled = True
|
||||
retraction_min_travel = =machine_nozzle_size * 3
|
||||
retraction_retract_speed = =retraction_speed
|
||||
retraction_prime_speed = =retraction_speed - 30
|
||||
retraction_prime_speed = =max(retraction_speed - 30, 5)
|
||||
roofing_layer_count = 1
|
||||
skin_line_width = =line_width * 1.2
|
||||
skin_outline_count = 2
|
||||
|
@ -35,7 +35,7 @@ retraction_combing = noskin
|
||||
retraction_hop_enabled = True
|
||||
retraction_min_travel = =machine_nozzle_size * 3
|
||||
retraction_retract_speed = =retraction_speed
|
||||
retraction_prime_speed = =retraction_speed - 30
|
||||
retraction_prime_speed = =max(retraction_speed - 30, 5)
|
||||
roofing_layer_count = 1
|
||||
skin_line_width = =line_width * 1.2
|
||||
skin_outline_count = 2
|
||||
|
@ -35,7 +35,7 @@ retraction_combing = noskin
|
||||
retraction_hop_enabled = True
|
||||
retraction_min_travel = =machine_nozzle_size * 3
|
||||
retraction_retract_speed = =retraction_speed
|
||||
retraction_prime_speed = =retraction_speed - 30
|
||||
retraction_prime_speed = =max(retraction_speed - 30, 5)
|
||||
roofing_layer_count = 1
|
||||
skin_line_width = =line_width * 1.2
|
||||
skin_outline_count = 2
|
||||
|
Loading…
x
Reference in New Issue
Block a user