mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 05:37:52 -06:00
Fix error in PrintRegion::flow() port
This commit is contained in:
parent
6adc3477c9
commit
f06566dd3a
2 changed files with 2 additions and 1 deletions
|
@ -48,6 +48,7 @@ class ConfigOptionFloat : public ConfigOption
|
|||
double value; // use double instead of float for preserving compatibility with values coming from Perl
|
||||
ConfigOptionFloat() : value(0) {};
|
||||
|
||||
operator float() const { return this->value; };
|
||||
operator double() const { return this->value; };
|
||||
|
||||
std::string serialize() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue