Browse Source

Merge pull request #14435 from Ultimaker/PP-71_allow-bridge-speeds-to-be-lower-then-cool_min_speed

allow bridge speeds to be lower then cool_min_speed
Jelle Spijker 2 years ago
parent
commit
8134cce3b8
1 changed files with 4 additions and 4 deletions
  1. 4 4
      resources/definitions/fdmprinter.def.json

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

@@ -7762,7 +7762,7 @@
                     "description": "The speed at which the bridge walls are printed.",
                     "unit": "mm/s",
                     "type": "float",
-                    "minimum_value": "cool_min_speed",
+                    "minimum_value": "0",
                     "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
                     "maximum_value_warning": "300",
                     "default_value": 15,
@@ -7789,7 +7789,7 @@
                     "description": "The speed at which bridge skin regions are printed.",
                     "unit": "mm/s",
                     "type": "float",
-                    "minimum_value": "cool_min_speed",
+                    "minimum_value": "0",
                     "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
                     "maximum_value_warning": "300",
                     "default_value": 15,
@@ -7850,7 +7850,7 @@
                     "description": "Print speed to use when printing the second bridge skin layer.",
                     "unit": "mm/s",
                     "type": "float",
-                    "minimum_value": "cool_min_speed",
+                    "minimum_value": "0",
                     "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
                     "maximum_value_warning": "300",
                     "default_value": 25,
@@ -7902,7 +7902,7 @@
                     "description": "Print speed to use when printing the third bridge skin layer.",
                     "unit": "mm/s",
                     "type": "float",
-                    "minimum_value": "cool_min_speed",
+                    "minimum_value": "0",
                     "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
                     "maximum_value_warning": "300",
                     "default_value": 15,