mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-24 11:21:14 -07:00
fix: angle limitations for machine_nozzle_expansion_angle (CURA-2572)
This commit is contained in:
parent
6b7876d60e
commit
6e84805c93
1 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue