From 2317e9c2b9b14d3a0f272100b1d2ea2a0a47cfea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hejl?= Date: Thu, 28 Jul 2022 13:42:14 +0200 Subject: [PATCH] Added information that the concentric infill is also affected by the selected perimeter generator. --- src/libslic3r/PrintConfig.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 1986ae979..e38ad006c 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3066,7 +3066,8 @@ void PrintConfigDef::init_fff_params() def->category = L("Layers and Perimeters"); def->tooltip = L("Classic perimeter generator produces perimeters with constant extrusion width and for " "very thin areas is used gap-fill. " - "Arachne engine produces perimeters with variable extrusion width."); + "Arachne engine produces perimeters with variable extrusion width. " + "This setting also affects the Concentric infill."); def->enum_keys_map = &ConfigOptionEnum::get_enum_values(); def->enum_values.push_back("classic"); def->enum_values.push_back("arachne");