summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/color.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/color.cpp b/src/color.cpp
index abaab6310..07c15ff15 100644
--- a/src/color.cpp
+++ b/src/color.cpp
@@ -245,7 +245,8 @@ std::string SPColor::toString() const
for (vector<double>::const_iterator i(device->colors.begin()),
iEnd(device->colors.end());
i != iEnd; ++i) {
- css << ", " << *i;
+ if (i!=device->colors.begin()) css << ", ";
+ css << *i;
}
css << ')';
}