diff options
Diffstat (limited to 'src/import.cc')
-rw-r--r-- | src/import.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/import.cc b/src/import.cc index 230cab2..b77c120 100644 --- a/src/import.cc +++ b/src/import.cc @@ -228,8 +228,8 @@ std::string ImportNode::toString() const std::stringstream stream; stream << this->name(); - stream << "(file = \"" << this->filename << "\", " - "layer = \"" << this->layername << "\", " + stream << "(file = " << this->filename << ", " + "layer = " << QuotedString(this->layername) << ", " "origin = [" << std::dec << this->origin_x << ", " << this->origin_y << "], " "scale = " << this->scale << ", " "convexity = " << this->convexity << ", " |