mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-17 03:37:54 -06:00
Fixed bugs with spiral_vase and standby_temperature_delta
This commit is contained in:
parent
418e083781
commit
9ebb0f27c1
2 changed files with 7 additions and 2 deletions
|
@ -255,7 +255,7 @@ void Tab::load_config(DynamicPrintConfig config)
|
|||
}
|
||||
break;
|
||||
case coPercent:
|
||||
value = std::to_string(int(config.option<ConfigOptionPercent>(opt_key)->value));
|
||||
value = config.option<ConfigOptionPercent>(opt_key)->value;// std::to_string(int(config.option<ConfigOptionPercent>(opt_key)->value));
|
||||
break;
|
||||
case coFloat:
|
||||
value = config.opt_float(opt_key);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue