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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs
diff options
context:
space:
mode:
authorLukas Matena <lukasmatena@seznam.cz>2018-04-12 17:13:59 +0300
committerLukas Matena <lukasmatena@seznam.cz>2018-04-12 17:13:59 +0300
commit52a3f4a2bbce38aab69dab6a62a943525cf7f699 (patch)
tree650088a1a897fb125b413506254ae3798f394a65 /xs
parentadbaa42b2b44c2d1bda43cd589fd83ed11476c6b (diff)
Default purging volumes set to more appropriate values
Diffstat (limited to 'xs')
-rw-r--r--xs/src/libslic3r/PrintConfig.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp
index ef54b24cf..66576c9f1 100644
--- a/xs/src/libslic3r/PrintConfig.cpp
+++ b/xs/src/libslic3r/PrintConfig.cpp
@@ -1038,7 +1038,7 @@ PrintConfigDef::PrintConfigDef()
def = this->add("parking_pos_retraction", coFloat);
def->label = L("Filament parking position");
- def->tooltip = L("Distance of the extruder tip from the position where the filament is parked"
+ def->tooltip = L("Distance of the extruder tip from the position where the filament is parked "
"when unloaded. This should match the value in printer firmware. ");
def->sidetext = L("mm");
def->cli = "parking_pos_retraction=f";
@@ -1818,18 +1818,18 @@ PrintConfigDef::PrintConfigDef()
"wipe tower. These values are used to simplify creation of the full purging "
"volumes below. ");
def->cli = "wiping-volumes-extruders=f@";
- def->default_value = new ConfigOptionFloats { 50.f, 50.f, 50.f, 50.f, 50.f, 50.f, 50.f, 50.f, 50.f, 50.f };
+ def->default_value = new ConfigOptionFloats { 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f };
def = this->add("wiping_volumes_matrix", coFloats);
def->label = L("Purging volumes - matrix");
def->tooltip = L("This matrix describes volumes (in cubic milimetres) required to purge the"
" new filament on the wipe tower for any given pair of tools. ");
def->cli = "wiping-volumes-matrix=f@";
- def->default_value = new ConfigOptionFloats { 0.f, 100.f, 100.f, 100.f, 100.f,
- 100.f, 0.f, 100.f, 100.f, 100.f,
- 100.f, 100.f, 0.f, 100.f, 100.f,
- 100.f, 100.f, 100.f, 0.f, 100.f,
- 100.f, 100.f, 100.f, 100.f, 0.f };
+ def->default_value = new ConfigOptionFloats { 0.f, 140.f, 140.f, 140.f, 140.f,
+ 140.f, 0.f, 140.f, 140.f, 140.f,
+ 140.f, 140.f, 0.f, 140.f, 140.f,
+ 140.f, 140.f, 140.f, 0.f, 140.f,
+ 140.f, 140.f, 140.f, 140.f, 0.f };
def = this->add("wipe_tower_x", coFloat);
def->label = L("Position X");