diff --git a/resources/machines/fdmprinter.json b/resources/machines/fdmprinter.json index b1c50d1201..85f7d1b9f1 100644 --- a/resources/machines/fdmprinter.json +++ b/resources/machines/fdmprinter.json @@ -390,6 +390,13 @@ "default": "lines", "visible": false }, + "skin_no_small_gaps_heuristic": { + "label": "Model has small Z gaps", + "description": "When the model has small vertical gaps about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces.", + "type": "boolean", + "default": false, + "visible": false + }, "skin_alternate_rotation": { "label": "Alternate Skin Rotation", "description": "Alternate between diagonal skin fill and horizontal + vertical skin fill. Although the diagonal directions can print quicker, this option can improve on the printing quality by reducing the pillowing effect.", diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index f995e600cd..bf2718a6fa 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -197,7 +197,8 @@ UM.MainWindow { id: sub_menu title: model.name; - + visible: actions != null + enabled:actions != null Instantiator { model: actions