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>2022-02-13 02:55:07 +0300
committersupermerill <merill@free.fr>2022-02-13 02:55:07 +0300
commit3c7655b1be330b060bc9b13e331a2bdb2a76dcbb (patch)
treeea639e5154eefe8d2d517d5b1979b6d1106d9f5f /src/libslic3r/PrintConfig.cpp
parentceae2e38e1e30f95bc54fe2c83c94c7ee3d5c9f1 (diff)
parent9dae482e1222ee55e21584f2c2c8d0a1f692a20b (diff)
Merge branch 'prusa2.4.1' into dev
Diffstat (limited to 'src/libslic3r/PrintConfig.cpp')
-rw-r--r--src/libslic3r/PrintConfig.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index c4f0f8858..3714ee416 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -2613,6 +2613,12 @@ void PrintConfigDef::init_fff_params()
def->mode = comExpert;
def->set_default_value(new ConfigOptionInt(5));
+ def = this->add("gcode_substitutions", coStrings);
+ def->label = L("G-code substitutions");
+ def->tooltip = L("Find / replace patterns in G-code lines and substitute them.");
+ def->mode = comExpert;
+ def->set_default_value(new ConfigOptionStrings());
+
def = this->add("high_current_on_filament_swap", coBool);
def->label = L("High extruder current on filament swap");
def->category = OptionCategory::general;