From 823eb1a2510febcde89e61fd5f60ddfacd7ec171 Mon Sep 17 00:00:00 2001 From: PavelMikus Date: Tue, 17 Jan 2023 14:05:09 +0100 Subject: [PATCH] disable dynamic overhang speed by default. We can enable them only in our profiles, and it is risky to set speed for unknown printers --- 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 c8e0ae2706..bc6d81b2d7 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -534,7 +534,7 @@ void PrintConfigDef::init_fff_params() def->category = L("Speed"); def->tooltip = L("This setting enables dynamic speed control on overhangs."); def->mode = comAdvanced; - def->set_default_value(new ConfigOptionBool(true)); + def->set_default_value(new ConfigOptionBool(false)); def = this->add("overhang_overlap_levels", coPercents); def->full_label = L("Overhang overlap levels");