[qet] [2570] Minor fix to dashdotted primitives |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 2570
Author: scorpio810
Date: 2013-10-15 12:17:32 +0200 (Tue, 15 Oct 2013)
Log Message:
-----------
Minor fix to dashdotted primitives
Modified Paths:
--------------
trunk/sources/editor/customelementgraphicpart.cpp
Modified: trunk/sources/editor/customelementgraphicpart.cpp
===================================================================
--- trunk/sources/editor/customelementgraphicpart.cpp 2013-10-13 19:07:15 UTC (rev 2569)
+++ trunk/sources/editor/customelementgraphicpart.cpp 2013-10-15 10:17:32 UTC (rev 2570)
@@ -75,6 +75,7 @@
if (style_name == "line-style") {
if (style_value == "dashed") _linestyle = DashedStyle;
if (style_value == "dotted") _linestyle = DottedStyle;
+ if (style_value == "dashdotted") _linestyle = DashdottedStyle;
else if (style_value == "normal") _linestyle = NormalStyle;
// il n'y a pas de else car les valeurs non conformes sont ignorees (idem par la suite)
} else if (style_name == "line-weight") {