[Libreoffice-commits] libcdr.git: src/lib
Fridrich Å trba
fridrich.strba at bluewin.ch
Fri Sep 6 02:48:13 PDT 2013
src/lib/CDRSVGGenerator.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit b279f9604bb1194e2eadf201dd5b6277e7494fea
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date: Fri Sep 6 11:47:28 2013 +0200
stroke-dasharray: solid is invalid, use none
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();
More information about the Libreoffice-commits
mailing list