Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupermerill <merill@free.fr>2021-12-20 21:26:04 +0300
committersupermerill <merill@free.fr>2021-12-20 21:28:10 +0300
commit4e0d91fe94764bcb2a8d291e95d8c8152b1573f2 (patch)
tree746c3da8ec70e7293da36e2b0b2052e5bbb2393b /src/libslic3r/PrintConfig.cpp
parent91d3862ead68915cc6c64617f8cb5fa32183d5e3 (diff)
Updated ConfigManipulation (disabled/enabled) for width & spacing.
Diffstat (limited to 'src/libslic3r/PrintConfig.cpp')
-rw-r--r--src/libslic3r/PrintConfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index 123362949..bf15e6c6a 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -1285,7 +1285,7 @@ void PrintConfigDef::init_fff_params()
def->precision = 6;
def->can_phony = true;
def->mode = comAdvanced;
- def->set_default_value(new ConfigOptionFloatOrPercent(100, true, false));
+ def->set_default_value(new ConfigOptionFloatOrPercent(0, false, false));
def = this->add("fan_always_on", coBools);
def->label = L("Keep fan always on");
@@ -3659,7 +3659,7 @@ void PrintConfigDef::init_fff_params()
def->max_literal = { 10, true };
def->precision = 6;
def->mode = comAdvanced;
- def->set_default_value(new ConfigOptionFloatOrPercent(0, false));
+ def->set_default_value(new ConfigOptionFloatOrPercent(130, true));
def = this->add("skirts", coInt);
def->label = L("Loops (minimum)");