fix: angle limitations for machine_nozzle_expansion_angle (CURA-2572)

This commit is contained in:
Tim Kuipers 2017-02-01 13:10:39 +01:00
parent 6b7876d60e
commit 6e84805c93

View File

@ -219,8 +219,11 @@
{ {
"label": "Nozzle angle", "label": "Nozzle angle",
"description": "The angle between the horizontal plane and the conical part right above the tip of the nozzle.", "description": "The angle between the horizontal plane and the conical part right above the tip of the nozzle.",
"default_value": 45, "unit": "°",
"type": "int", "type": "int",
"default_value": 45,
"maximum_value": 89,
"minimum_value": 1,
"settable_per_mesh": false, "settable_per_mesh": false,
"settable_per_extruder": false, "settable_per_extruder": false,
"settable_per_meshgroup": false "settable_per_meshgroup": false