From f9973bc2c57db640d83f19a37bb6852382cbf2b1 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 10 Sep 2025 22:25:36 +0800 Subject: [PATCH] Enable Precise wall by default --- 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 590c7a37b3..2d491a2f92 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1086,7 +1086,7 @@ void PrintConfigDef::init_fff_params() def->label = L("Precise wall"); def->category = L("Quality"); def->tooltip = L("Improve shell precision by adjusting outer wall spacing. This also improves layer consistency."); - def->set_default_value(new ConfigOptionBool{false}); + def->set_default_value(new ConfigOptionBool{true}); def = this->add("only_one_wall_top", coBool); def->label = L("Only one wall on top surfaces");