From c44715f9e0646caecdb4cf54c52df74853f78573 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 12 Aug 2021 12:46:18 +0200 Subject: [PATCH] Moved 'brim_offset' option into Advanced mode (same as EFC) --- 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 ed7961ce1..267ea602f 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -493,7 +493,7 @@ void PrintConfigDef::init_fff_params() def->category = L("Skirt and brim"); def->tooltip = L("The offset of the brim from the printed object."); def->sidetext = L("mm"); - def->mode = comSimple; + def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(0)); def = this->add("clip_multipart_objects", coBool);