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:
authorj.delarago <joeydelarago@gmail.com>2022-02-16 18:49:13 +0300
committerj.delarago <joeydelarago@gmail.com>2022-02-16 18:49:13 +0300
commit7885ade735a97ab3d89d7e3788402d3096abfbb5 (patch)
tree63e57d787fc1397a4df83849ade3bc842a3bee4e
parent5fc89b6053fed01ccba6ceae29089aa81f1346e0 (diff)
Disable gradual infill when using gyroid infill.CURA-7377_disable_gradual_infill_when_using_Gyroid_infill
CURA-7377
-rw-r--r--resources/definitions/fdmprinter.def.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json
index dc01b0e585..cda121c8ca 100644
--- a/resources/definitions/fdmprinter.def.json
+++ b/resources/definitions/fdmprinter.def.json
@@ -2148,7 +2148,7 @@
"minimum_value": "0",
"maximum_value_warning": "1 if (infill_pattern == 'cross' or infill_pattern == 'cross_3d' or infill_pattern == 'concentric') else 5",
"maximum_value": "999999 if infill_line_distance == 0 else (20 - math.log(infill_line_distance) / math.log(2))",
- "enabled": "infill_sparse_density > 0 and infill_pattern not in ['cubicsubdiv', 'cross', 'cross_3d', 'lightning']",
+ "enabled": "infill_sparse_density > 0 and infill_pattern not in ['cubicsubdiv', 'cross', 'cross_3d', 'lightning', 'gyroid']",
"limit_to_extruder": "infill_extruder_nr",
"settable_per_mesh": true
},
@@ -2161,7 +2161,7 @@
"default_value": 1.5,
"minimum_value": "0.0001",
"minimum_value_warning": "3 * resolveOrValue('layer_height')",
- "enabled": "infill_sparse_density > 0 and gradual_infill_steps > 0 and infill_pattern not in ['cubicsubdiv', 'cross', 'cross_3d', 'lightning']",
+ "enabled": "infill_sparse_density > 0 and gradual_infill_steps > 0 and infill_pattern not in ['cubicsubdiv', 'cross', 'cross_3d', 'lightning', 'gyroid']",
"limit_to_extruder": "infill_extruder_nr",
"settable_per_mesh": true
},