Bugfix: import module toString() output was not parsable

stl_dim
Marius Kintel 2011-11-03 19:38:57 +01:00
parent 6aad275d0a
commit a8db9fa3dd
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ std::string ImportNode::toString() const
stream << "(file = \"" << this->filename << "\", "
"cache = \"" << std::hex << (int)st.st_mtime << "." << (int)st.st_size << "\", "
"layer = \"" << this->layername << "\", "
"origin = [ " << std::dec << this->origin_x << " " << this->origin_y << " ], "
"origin = [" << std::dec << this->origin_x << ", " << this->origin_y << "], "
"scale = " << this->scale << ", "
"convexity = " << this->convexity << ", "
"$fn = " << this->fn << ", $fa = " << this->fa << ", $fs = " << this->fs << ")";