From 33dccc134039a596482ae077f994a9bffbdd7e5d Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 1 Jun 2017 21:57:26 +0200 Subject: [PATCH] Add sanding pattern setting I should probably remove Lines or Zig Zag as option, since they are basically the same. Contributes to issue CURA-3903. --- resources/definitions/fdmprinter.def.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 96550e9cc5..5f32fea15a 100755 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5348,6 +5348,21 @@ "type": "bool", "default_value": false, "settable_per_mesh": true + }, + "sanding_pattern": + { + "label": "Sanding Pattern", + "description": "The pattern to use for sanding top surfaces.", + "type": "enum", + "options": + { + "lines": "Lines", + "concentric": "Concentric", + "zigzag": "Zig Zag" + }, + "default_value": "lines", + "enabled": "sanding_enabled", + "settable_per_mesh": true } } },