Fixed linking of the "pad" combo box of the Plater with the respective

pad boolean values of the configuration layer.
This commit is contained in:
bubnikv 2019-08-08 09:48:56 +02:00
parent b7f93292fa
commit 8970ee28b2
2 changed files with 11 additions and 1 deletions

View file

@ -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);