summaryrefslogtreecommitdiffstats
path: root/src/style-internal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/style-internal.cpp')
-rw-r--r--src/style-internal.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/style-internal.cpp b/src/style-internal.cpp
index 5ea806b89..6c66e44b6 100644
--- a/src/style-internal.cpp
+++ b/src/style-internal.cpp
@@ -2847,7 +2847,11 @@ const Glib::ustring SPIVectorEffect::get_value() const
if (this->size) ret += " non-scaling-size";
if (this->rotate) ret += " non-rotation";
if (this->fixed) ret += " fixed-position";
- if (ret.empty()) ret += "none";
+ if (ret.empty()) {
+ ret += "none";
+ } else {
+ ret.erase(0,1);
+ }
return ret;
}