mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 08:47:52 -06:00
Fixed a regression bug (typo) in update of OptionGroups.
This commit is contained in:
parent
4df38d4c4b
commit
4b11abff26
2 changed files with 5 additions and 2 deletions
|
@ -438,11 +438,14 @@ void ConfigOptionsGroup::on_kill_focus(const std::string& opt_key)
|
|||
void ConfigOptionsGroup::reload_config()
|
||||
{
|
||||
for (auto &kvp : m_opt_map) {
|
||||
// Name of the option field (name of the configuration key, possibly suffixed with '#' and the index of a scalar inside a vector.
|
||||
const std::string &opt_id = kvp.first;
|
||||
// option key (may be scalar or vector)
|
||||
const std::string &opt_key = kvp.second.first;
|
||||
// index in the vector option, zero for scalars
|
||||
int opt_index = kvp.second.second;
|
||||
const ConfigOptionDef &option = m_options.at(opt_id).opt;
|
||||
this->set_value(opt_key, config_value(opt_key, opt_index, option.gui_flags == "serialized"));
|
||||
this->set_value(opt_id, config_value(opt_key, opt_index, option.gui_flags == "serialized"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue