Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion plugins/PaintTool/PaintTool.qml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ Item
icon: "Support"
tooltipText: catalog.i18nc("@tooltip", "Refine support placement by defining preferred/avoidance areas")
mode: "support"
visible: false
}

PaintModeButton
Expand Down
18 changes: 17 additions & 1 deletion resources/definitions/fdmprinter.def.json
Original file line number Diff line number Diff line change
Expand Up @@ -6592,6 +6592,21 @@
"settable_per_mesh": false,
"settable_per_extruder": false,
"settable_per_meshgroup": false
},
"support_paint_resolution":
{
"label": "Support Painting Precision",
"description": "The precision of the details when generating support based on painting data. A lower precision will provide more details, but increase the slicing time and memory.",
"unit": "mm",
"type": "float",
"enabled": "support_enable",
"default_value": 0.8,
"value": "min(line_width, layer_height * 2)",
"minimum_value": "0.05",
"maximum_value": "10",
"maximum_value_warning": "line_width * 10",
"settable_per_mesh": true,
"settable_per_extruder": true
}
}
},
Expand Down Expand Up @@ -9723,7 +9738,8 @@
"settable_per_extruder": true,
"settable_per_mesh": true
},
"minimum_infill_line_length": {
"minimum_infill_line_length":
{
"label": "Minimum Infill Line Length",
"description": "When an infill area generates lines with a total length lower than this value, they will be discarded to avoid printing lots of tiny useless lines. It can help reduce travel moves, retractions and unretractions.",
"type": "float",
Expand Down