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:
authorVojtech Bubnik <bubnikv@gmail.com>2021-02-03 17:12:53 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-02-03 17:12:53 +0300
commit73c9f939e07916350bb0a70eeb4fee28da7dad9d (patch)
tree6af9ba45a76bfd795e466f9e419194a2eee87668 /src/slic3r/GUI/OptionsGroup.cpp
parente52efe48b08c6f1fd8dd39829f967ca5a6a57d3d (diff)
Squash merge of lh_brim_rework,
brim separated to Brim.cpp,hpp Refactored accessors to PrintObjectPtrs, PrintRegionPtrs, LayerPtrs, SupportLayerPtrs for const correctness.
Diffstat (limited to 'src/slic3r/GUI/OptionsGroup.cpp')
-rw-r--r--src/slic3r/GUI/OptionsGroup.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/slic3r/GUI/OptionsGroup.cpp b/src/slic3r/GUI/OptionsGroup.cpp
index 8f5e20241..dafce5efc 100644
--- a/src/slic3r/GUI/OptionsGroup.cpp
+++ b/src/slic3r/GUI/OptionsGroup.cpp
@@ -899,6 +899,9 @@ boost::any ConfigOptionsGroup::get_config_value(const DynamicPrintConfig& config
else if (opt_key == "printhost_authorization_type") {
ret = static_cast<int>(config.option<ConfigOptionEnum<AuthorizationType>>(opt_key)->value);
}
+ else if (opt_key == "brim_type") {
+ ret = static_cast<int>(config.option<ConfigOptionEnum<BrimType>>(opt_key)->value);
+ }
}
break;
case coPoints: