mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-14 01:25:56 +08:00
Regression fix of percent config values serialization.
This commit is contained in:
parent
102329c54d
commit
0a692cc497
@ -104,7 +104,6 @@ class ConfigOptionFloat : public ConfigOptionSingle<double>
|
||||
class ConfigOptionFloats : public ConfigOptionVector<double>
|
||||
{
|
||||
public:
|
||||
|
||||
std::string serialize() const {
|
||||
std::ostringstream ss;
|
||||
for (std::vector<double>::const_iterator it = this->values.begin(); it != this->values.end(); ++it) {
|
||||
@ -164,7 +163,6 @@ class ConfigOptionInt : public ConfigOptionSingle<int>
|
||||
class ConfigOptionInts : public ConfigOptionVector<int>
|
||||
{
|
||||
public:
|
||||
|
||||
std::string serialize() const {
|
||||
std::ostringstream ss;
|
||||
for (std::vector<int>::const_iterator it = this->values.begin(); it != this->values.end(); ++it) {
|
||||
@ -218,7 +216,6 @@ class ConfigOptionString : public ConfigOptionSingle<std::string>
|
||||
class ConfigOptionStrings : public ConfigOptionVector<std::string>
|
||||
{
|
||||
public:
|
||||
|
||||
std::string serialize() const {
|
||||
return escape_strings_cstyle(this->values);
|
||||
};
|
||||
@ -263,7 +260,7 @@ class ConfigOptionPercents : public ConfigOptionFloats
|
||||
public:
|
||||
std::string serialize() const {
|
||||
std::ostringstream ss;
|
||||
for (const auto v : this->values) {
|
||||
for (const auto &v : this->values) {
|
||||
if (&v != &this->values.front()) ss << ",";
|
||||
ss << v << "%";
|
||||
}
|
||||
@ -365,7 +362,6 @@ class ConfigOptionPoint : public ConfigOptionSingle<Pointf>
|
||||
class ConfigOptionPoints : public ConfigOptionVector<Pointf>
|
||||
{
|
||||
public:
|
||||
|
||||
std::string serialize() const {
|
||||
std::ostringstream ss;
|
||||
for (Pointfs::const_iterator it = this->values.begin(); it != this->values.end(); ++it) {
|
||||
@ -428,7 +424,6 @@ class ConfigOptionBool : public ConfigOptionSingle<bool>
|
||||
class ConfigOptionBools : public ConfigOptionVector<bool>
|
||||
{
|
||||
public:
|
||||
|
||||
std::string serialize() const {
|
||||
std::ostringstream ss;
|
||||
for (std::vector<bool>::const_iterator it = this->values.begin(); it != this->values.end(); ++it) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user