From a74aaca681c0aa98d8f35382ea2414ebdef6448b Mon Sep 17 00:00:00 2001 From: bubnikv Date: Wed, 25 Jan 2017 18:29:10 +0100 Subject: [PATCH] Disable support interface loops by default. --- xs/src/libslic3r/PrintConfig.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp index 8556783fc5..b11ada9550 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -1190,11 +1190,11 @@ PrintConfigDef::PrintConfigDef() def->default_value = new ConfigOptionFloatOrPercent(0, false); def = this->add("support_material_interface_contact_loops", coBool); - def->label = "Interface circles"; + def->label = "Interface loops"; def->category = "Support material"; - def->tooltip = "Cover the top most interface layer with contact loops"; + def->tooltip = "Cover the top contact layer of the supports with loops. Disabled by default."; def->cli = "support-material-interface-contact-loops!"; - def->default_value = new ConfigOptionBool(true); + def->default_value = new ConfigOptionBool(false); def = this->add("support_material_interface_extruder", coInt); def->label = "Support material/raft interface extruder";