mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 06:55:53 +08:00
Fixed a bug when reverting to an old value with comma-separated doubles
This commit is contained in:
parent
4960b125c5
commit
afca744d37
@ -115,7 +115,7 @@ void change_opt_value(DynamicPrintConfig& config, const t_config_option_key& opt
|
|||||||
str.pop_back();
|
str.pop_back();
|
||||||
percent = true;
|
percent = true;
|
||||||
}
|
}
|
||||||
double val = string_to_double_decimal_point(str);
|
double val = std::stod(str); // locale-dependent (on purpose - the input is the actual content of the field)
|
||||||
config.set_key_value(opt_key, new ConfigOptionFloatOrPercent(val, percent));
|
config.set_key_value(opt_key, new ConfigOptionFloatOrPercent(val, percent));
|
||||||
break;}
|
break;}
|
||||||
case coPercent:
|
case coPercent:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user