From f22cbc4fa9abc48e74ce95e00c85bb0c85b62737 Mon Sep 17 00:00:00 2001 From: Merill Date: Tue, 29 Sep 2020 13:46:07 +0200 Subject: [PATCH] #507 default for infill_dense_algo to dfaAutoNotFull --- 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 cd388499f..08f0a6aff 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1748,7 +1748,7 @@ void PrintConfigDef::init_fff_params() def->enum_labels.push_back(L("Automatic, only for small areas")); def->enum_labels.push_back(L("Anchored")); def->mode = comAdvanced; - def->set_default_value(new ConfigOptionEnum(dfaAutomatic)); + def->set_default_value(new ConfigOptionEnum(dfaAutoNotFull)); def = this->add("infill_extruder", coInt); def->label = L("Infill extruder");