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
diff options
context:
space:
mode:
authorLukas Matena <lukasmatena@seznam.cz>2018-02-28 18:04:56 +0300
committerLukas Matena <lukasmatena@seznam.cz>2018-02-28 18:04:56 +0300
commita62ad3323f389e3ce93915b7fea92bd1eccf321e (patch)
treeea1b311809d552e4e91b2c5ad8e0dca0785acc3a /xs/src/libslic3r/PrintConfig.cpp
parent3099c32d0805a6fff26929e9be3dcb27e50f9bfa (diff)
First naive implementation of wipe tower settings dialog
Diffstat (limited to 'xs/src/libslic3r/PrintConfig.cpp')
-rw-r--r--xs/src/libslic3r/PrintConfig.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp
index 995dcee99..7a48b3a32 100644
--- a/xs/src/libslic3r/PrintConfig.cpp
+++ b/xs/src/libslic3r/PrintConfig.cpp
@@ -1701,6 +1701,13 @@ PrintConfigDef::PrintConfigDef()
def->cli = "wipe-tower!";
def->default_value = new ConfigOptionBool(false);
+ def = this->add("wipe_tower_advanced", coString);
+ def->label = _L("Advanced string");
+ def->tooltip = _L("Advanced tooltip ");
+ def->sidetext = _L("advanced sidetext");
+ def->cli = "wipe-tower-advanced=s";
+ def->default_value = new ConfigOptionString("");
+
def = this->add("wipe_tower_x", coFloat);
def->label = _L("Position X");
def->tooltip = _L("X coordinate of the left front corner of a wipe tower");
@@ -1723,7 +1730,7 @@ PrintConfigDef::PrintConfigDef()
def->default_value = new ConfigOptionFloat(60.);
def = this->add("wipe_tower_per_color_wipe", coFloat);
- def->label = _L("Per color change depth");
+ def->label = "(Unused and will be likely removed)";//_L("Per color change depth");
def->tooltip = _L("Depth of a wipe color per color change. For N colors, there will be "
"maximum (N-1) tool switches performed, therefore the total depth "
"of the wipe tower will be (N-1) times this value.");