From 1cbb822dd70057328909995d188b10808506f79e Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 20 Mar 2020 18:25:11 +0100 Subject: [PATCH] Enabled "clip multipart objects" by default, see discussion in https://github.com/prusa3d/PrusaSlicer/issues/2803#issuecomment-524602137 --- src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 05aade05ea6..c7a7a9c8e70 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -254,7 +254,7 @@ void PrintConfigDef::init_fff_params() "to clip the overlapping object parts one by the other " "(2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)."); def->mode = comExpert; - def->set_default_value(new ConfigOptionBool(false)); + def->set_default_value(new ConfigOptionBool(true)); def = this->add("colorprint_heights", coFloats); def->label = L("Colorprint height");