From be51d555d35d33e1041a553ac89375d663cee983 Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Wed, 10 Feb 2021 09:46:07 +0100 Subject: [PATCH] Fix of a failing Perl integration test "combine infill" after merging of pull request Raft enhancements #6003: Enabling the bridging flow above raft to match the defaults of the old slicer. --- 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 6c0b648da94..1c35cbadf41 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1815,7 +1815,7 @@ void PrintConfigDef::init_fff_params() def->category = L("Support material"); def->tooltip = L("Use bridge flow and speed for the bottom layer. Quality of the layer improves significantly when this setting is off, however it could be difficult to remove the object from raft. Ignored for soluble interface."); def->mode = comAdvanced; - def->set_default_value(new ConfigOptionBool(false)); + def->set_default_value(new ConfigOptionBool(true)); def = this->add("raft_contact_distance", coFloat); def->label = L("Raft contact Z distance");