From 75335f48c08e0bf656324d2e5fbbb17f4485b425 Mon Sep 17 00:00:00 2001 From: Florens Wasserfall Date: Thu, 26 Jan 2017 09:25:24 +0100 Subject: [PATCH] Changed adaptive slicing horizontal feature detection default to false --- xs/src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp index d69d35758..3ed618c00 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -591,7 +591,7 @@ PrintConfigDef::PrintConfigDef() def->label = "Match horizontal surfaces"; def->tooltip = "Try to match horizontal surfaces during the slicing process. Matching is not guaranteed, very small surfaces and multiple surfaces with low vertical distance might cause bad results."; def->cli = "match-horizontal-surfaces!"; - def->default_value = new ConfigOptionBool(true); + def->default_value = new ConfigOptionBool(false); def = this->add("max_fan_speed", coInt); def->label = "Max";