transparent stroke fix

This commit is contained in:
honfika@gmail.com
2015-12-28 11:34:12 +01:00
parent 36745f98ff
commit 316526512f

View File

@@ -1508,7 +1508,7 @@ public class SvgImporter {
scr.lineStyles = new LINESTYLEARRAY();
SvgFill strokeFill = style.getStrokeFillWithOpacity();
if (strokeFill != null) {
if (strokeFill != null && strokeFill != SvgTransparentFill.INSTANCE) {
Color lineColor = strokeFill.toColor();
scr.lineStyles.lineStyles = new LINESTYLE[1];