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:
authorbubnikv <bubnikv@gmail.com>2017-12-18 17:07:38 +0300
committerbubnikv <bubnikv@gmail.com>2017-12-18 17:07:38 +0300
commit6b81f43206b1a83b4bc8d6d830b31f7c9c477cc2 (patch)
tree07f798089e077f7a4982027e4275eb76f99f3d56 /xs/src/libslic3r/PrintConfig.cpp
parentbb61de83795b10f77107e81384b62405ba2bbc89 (diff)
First implementation of the "compatible_printers_condition"
for the print and filament profiles. Added documentation for building the boost library for Slic3r on Linux.
Diffstat (limited to 'xs/src/libslic3r/PrintConfig.cpp')
-rw-r--r--xs/src/libslic3r/PrintConfig.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp
index f9edc9b2f..902914536 100644
--- a/xs/src/libslic3r/PrintConfig.cpp
+++ b/xs/src/libslic3r/PrintConfig.cpp
@@ -139,6 +139,13 @@ PrintConfigDef::PrintConfigDef()
def->label = "Compatible printers";
def->default_value = new ConfigOptionStrings();
+ def = this->add("compatible_printers_condition", coString);
+ def->label = "Compatible printers condition";
+ def->tooltip = "A boolean expression using the configuration values of an active printer profile. "
+ "If this expression evaluates to true, this profile is considered compatible "
+ "with the active printer profile.";
+ def->default_value = new ConfigOptionString();
+
def = this->add("complete_objects", coBool);
def->label = "Complete individual objects";
def->tooltip = "When printing multiple objects or copies, this feature will complete "