Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CURA-10407] Fix description now that we have fractional layer-heights (for top). #17022

Merged
merged 4 commits into from
Oct 27, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions resources/definitions/fdmprinter.def.json
Original file line number Diff line number Diff line change
Expand Up @@ -5130,7 +5130,7 @@
"support_z_distance":
{
"label": "Support Z Distance",
"description": "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height.",
"description": "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. Apart from the top-layer, this value is rounded up to a multiple of the layer height.",
wawanbreton marked this conversation as resolved.
Show resolved Hide resolved
"unit": "mm",
"type": "float",
"minimum_value": "0",
Expand All @@ -5144,7 +5144,7 @@
"support_top_distance":
{
"label": "Support Top Distance",
"description": "Distance from the top of the support to the print.",
"description": "Distance from the top of the support to the print. Note that this is not rounded.",
wawanbreton marked this conversation as resolved.
Show resolved Hide resolved
"unit": "mm",
"minimum_value": "0",
"maximum_value_warning": "machine_nozzle_size",
Expand All @@ -5158,7 +5158,7 @@
"support_bottom_distance":
{
"label": "Support Bottom Distance",
"description": "Distance from the print to the bottom of the support.",
"description": "Distance from the print to the bottom of the support. Not that this is rounded up to the next layer height.",
wawanbreton marked this conversation as resolved.
Show resolved Hide resolved
"unit": "mm",
"minimum_value": "0",
"maximum_value_warning": "machine_nozzle_size",
Expand Down
Loading