Browse Source

Don't set the Max Branch Angle beyond nominal values by default.

Otherwise, for example, a support angle of 90 can cause this setting to block slicing, since it will be beyond its maximum value.

CURA-10553
Remco Burema 1 year ago
parent
commit
0bc3556c97
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/definitions/fdmprinter.def.json

+ 1 - 1
resources/definitions/fdmprinter.def.json

@@ -4573,7 +4573,7 @@
                     "maximum_value": "89",
                     "maximum_value_warning": "85",
                     "default_value": 60,
-                    "value": "support_angle",
+                    "value": "max(min(support_angle, 85), 20)",
                     "limit_to_extruder": "support_infill_extruder_nr",
                     "enabled": "support_enable and support_structure=='tree'",
                     "settable_per_mesh": true,