From 2b396814ca1cae5904b04cd00796cdcb88c1c8c6 Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Mon, 31 Aug 2015 14:31:40 +0200 Subject: [PATCH] split magic_mesh)surface_mode into Normal, Surface, Both --- resources/settings/fdmprinter.json | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/settings/fdmprinter.json b/resources/settings/fdmprinter.json index 1d7f6db0c6..879a03736f 100644 --- a/resources/settings/fdmprinter.json +++ b/resources/settings/fdmprinter.json @@ -1820,9 +1820,14 @@ }, "magic_mesh_surface_mode": { "label": "Surface Mode", - "description": "Print the surface instead of the volume. No infill, no top/bottom skin, just a single wall of which the middle coincides with the surface of the mesh.", - "type": "boolean", - "default": false, + "description": "Print the surface instead of the volume. No infill, no top/bottom skin, just a single wall of which the middle coincides with the surface of the mesh. It's also possible to do both: print the insides of a closed volume as normal, but print all polygons not part of a closed volume as surface.", + "type": "enum", + "options": [ + "Normal", + "Surface", + "Both" + ], + "default": "Normal", "visible": false }, "magic_spiralize": {