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:
authorDave Bullock <eecue@eecue.com>2021-09-17 23:31:28 +0300
committersupermerill <merill@free.fr>2021-10-07 23:22:37 +0300
commit5d711f2420f17cd5a612b1af54a5ddb25f8f634e (patch)
tree2aca8f1fb1929ac4e9154815acea2df86ed9ff94 /src/libslic3r/PrintConfig.cpp
parent54ad2a8611f662ac8acc15f50084022c7eab82f3 (diff)
Increase max wipe speed for Voron ERCF wipe towers (#1568)
* Increase max wipe speed for Voron ERCF wipe towers from 200 to 400
Diffstat (limited to 'src/libslic3r/PrintConfig.cpp')
-rw-r--r--src/libslic3r/PrintConfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index 0cc55f7a8..c5ae79bd8 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -1338,7 +1338,7 @@ void PrintConfigDef::init_fff_params()
"\nIf using marlin, M220 B/R is used to save the speed override before the wipe tower print.");
def->sidetext = L("%");
def->min = 0;
- def->max = 200;
+ def->max = 400;
def->mode = comExpert;
def->is_vector_extruder = true;
def->set_default_value(new ConfigOptionFloats { 0 });