Fixed a typo: Added missed "break" after previous merging

This commit is contained in:
YuSanka 2024-02-29 15:00:26 +01:00
parent ac468bad2d
commit 705102e947

View File

@ -229,6 +229,7 @@ void OptionsGroup::change_opt_value(DynamicPrintConfig& config, const t_config_o
//config.set_key_value(opt_key, new ConfigOptionInt(boost::any_cast<int>(value))); //config.set_key_value(opt_key, new ConfigOptionInt(boost::any_cast<int>(value)));
int& val_new = config.opt_int(opt_key); int& val_new = config.opt_int(opt_key);
val_new = boost::any_cast<int>(value); val_new = boost::any_cast<int>(value);
break;
} }
case coInts: { case coInts: {
ConfigOptionInts* vec_new = new ConfigOptionInts{ boost::any_cast<int>(value) }; ConfigOptionInts* vec_new = new ConfigOptionInts{ boost::any_cast<int>(value) };