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>2019-08-08 10:48:56 +0300
committerbubnikv <bubnikv@gmail.com>2019-08-08 10:48:56 +0300
commit8970ee28b26edd41496f268e5426d628e5b0db2a (patch)
tree8497b3496584ae4f0cb913568d03e7d7f53acc5a /src/slic3r/GUI/Field.cpp
parentb7f93292fa147d9f6bfd0ca7ae7df03728fe0c7b (diff)
Fixed linking of the "pad" combo box of the Plater with the respective
pad boolean values of the configuration layer.
Diffstat (limited to 'src/slic3r/GUI/Field.cpp')
-rw-r--r--src/slic3r/GUI/Field.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/Field.cpp b/src/slic3r/GUI/Field.cpp
index 39fa9c54b..72e5fb8f9 100644
--- a/src/slic3r/GUI/Field.cpp
+++ b/src/slic3r/GUI/Field.cpp
@@ -905,7 +905,7 @@ boost::any& Choice::get_value()
wxString ret_str = field->GetValue();
// options from right panel
- std::vector <std::string> right_panel_options{ "support", "scale_unit" };
+ std::vector <std::string> right_panel_options{ "support", "pad", "scale_unit" };
for (auto rp_option: right_panel_options)
if (m_opt_id == rp_option)
return m_value = boost::any(ret_str);