Increase default limit on feed rate

There is no real limit by default now. Only light speed (and the limit on the input element's length). The feed rate limit should be set by a machine definition. If there is no limit set, let there be no limit to what the user can input.

Contributes to issue CURA-2284.
This commit is contained in:
Ghostkeeper 2016-09-06 10:28:19 +02:00
parent 6db03538a1
commit 6909f88ce6
No known key found for this signature in database
GPG Key ID: 701948C5954A7385
2 changed files with 4 additions and 1 deletions

View File

@ -403,7 +403,7 @@
"description": "The maximum speed of the filament.",
"unit": "mm/s",
"type": "float",
"default_value": 25,
"default_value": 299792458000,
"settable_per_mesh": false,
"settable_per_extruder": false,
"settable_per_meshgroup": false

View File

@ -9,6 +9,9 @@
"visible": false
},
"overrides": {
"machine_max_feedrate_e": {
"default_value": 45
},
"material_print_temperature": {
"minimum_value": "0"
},