mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-13 06:09:03 +08:00
Fixed a typo: Added missed "break" after previous merging
This commit is contained in:
parent
ac468bad2d
commit
705102e947
@ -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) };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user