mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-06 21:44:01 -06:00
Change the sign of comparing against density
Contributes to issue CURA-7287.
This commit is contained in:
parent
287e31554b
commit
466964cf41
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ machine_nozzle_heat_up_speed = 1.6
|
|||
material_print_temperature = =default_material_print_temperature + 5
|
||||
material_standby_temperature = 100
|
||||
prime_tower_enable = False
|
||||
skin_edge_support_thickness = =0.8 if infill_sparse_density > 30 else 0
|
||||
skin_edge_support_thickness = =0.8 if infill_sparse_density < 30 else 0
|
||||
skin_overlap = 20
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 70)
|
||||
speed_topbottom = =math.ceil(speed_print * 40 / 70)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue