setting fix: make Connect Infill Polygons available for Multiplied Infill

This commit is contained in:
Tim Kuipers 2018-05-17 18:41:50 +02:00
parent 285f136856
commit 5cb5e63dcc

View file

@ -1664,8 +1664,8 @@
"description": "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time.",
"type": "bool",
"default_value": false,
"value": "infill_pattern == 'cross' or infill_pattern == 'cross_3d'",
"enabled": "infill_pattern == 'concentric_3d' or infill_pattern == 'cross' or infill_pattern == 'cross_3d'",
"value": "infill_pattern == 'cross' or infill_pattern == 'cross_3d' or infill_multiplier % 2 = 0",
"enabled": "infill_pattern == 'concentric_3d' or infill_pattern == 'cross' or infill_pattern == 'cross_3d' or infill_multiplier % 2 == 0",
"limit_to_extruder": "infill_extruder_nr",
"settable_per_mesh": true
},