From 73c9f939e07916350bb0a70eeb4fee28da7dad9d Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Wed, 3 Feb 2021 15:12:53 +0100 Subject: Squash merge of lh_brim_rework, brim separated to Brim.cpp,hpp Refactored accessors to PrintObjectPtrs, PrintRegionPtrs, LayerPtrs, SupportLayerPtrs for const correctness. --- src/slic3r/GUI/OptionsGroup.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/slic3r/GUI/OptionsGroup.cpp') 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(config.option>(opt_key)->value); } + else if (opt_key == "brim_type") { + ret = static_cast(config.option>(opt_key)->value); + } } break; case coPoints: -- cgit v1.2.3