From 4c35259c72b13565d656e3c646a1b60279042758 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 4 Aug 2021 15:19:00 +0200 Subject: [PATCH] Allow monotonic skin if initial layer pattern is not concentric Contributes to issue CURA-7928. Co-authored-by: Jaime van Kessel --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 5515226eb6..a38cfc8852 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1525,7 +1525,7 @@ "description": "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent.", "type": "bool", "default_value": false, - "enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'", + "enabled": "(top_layers > 0 or bottom_layers > 0) and (top_bottom_pattern != 'concentric' or top_bottom_pattern_0 != 'concentric')", "limit_to_extruder": "top_bottom_extruder_nr", "settable_per_mesh": true },