summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2013-09-06 11:47:28 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2013-09-06 11:47:28 +0200
commitb279f9604bb1194e2eadf201dd5b6277e7494fea (patch)
tree3d4cc0f7ade250c2d88315be81f0f3f18836a4ac /src
parent5e7bbd79cc6b90c7473efda605259c9613c52c41 (diff)
stroke-dasharray: solid is invalid, use none
Diffstat (limited to 'src')
-rw-r--r--src/lib/CDRSVGGenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/CDRSVGGenerator.cpp b/src/lib/CDRSVGGenerator.cpp
index 779d57a..c92a86d 100644
--- a/src/lib/CDRSVGGenerator.cpp
+++ b/src/lib/CDRSVGGenerator.cpp
@@ -618,7 +618,7 @@ void libcdr::CDRSVGGenerator::writeStyle(bool /* isClosed */)
}
if (m_style["draw:stroke"] && m_style["draw:stroke"]->getStr() == "solid")
- m_outputSink << "stroke-dasharray: solid; ";
+ m_outputSink << "stroke-dasharray: none; ";
else if (m_style["draw:stroke"] && m_style["draw:stroke"]->getStr() == "dash")
{
int dots1 = m_style["draw:dots1"]->getInt();