diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-06 02:25:59 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-06 02:25:59 (GMT) |
commit | 91394ed8bde8af471293884fce3a2f236313d314 (patch) | |
tree | b19e9f1426944007c7e868eb7d2e3b17001d6627 /src/rotateextrude.cc | |
parent | 93e365b476c18bc9c1e9f7cfb67f0e025254c387 (diff) |
Bugfix: rotate_extruder and linear_extrude module toString() output was not parsable
Diffstat (limited to 'src/rotateextrude.cc')
-rw-r--r-- | src/rotateextrude.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rotateextrude.cc b/src/rotateextrude.cc index 4d6de73..13e5db0 100644 --- a/src/rotateextrude.cc +++ b/src/rotateextrude.cc @@ -124,7 +124,7 @@ std::string RotateExtrudeNode::toString() const "file = \"" << this->filename << "\", " "cache = \"" << QFileInfo(QString::fromStdString(this->filename)) << "\", " "layer = \"" << this->layername << "\", " - "origin = [ " << std::dec << this->origin_x << " " << this->origin_y << " ], " + "origin = [" << std::dec << this->origin_x << ", " << this->origin_y << "], " "scale = " << this->scale << ", "; } stream << |