diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-09-22 21:06:50 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-09-22 21:06:50 +0000 |
commit | f4aa4cbc66d9a7b0fe9f8580a990c8c714cd4f30 (patch) | |
tree | 8897d139f7aaa89998b72c234b5bcf8479280d29 | |
parent | 9f4dbf871c06cb8657c43204cd7fc1650f44bdf2 (diff) |
Fix stroke-dasharray format
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1174391 13f79535-47bb-0310-9956-ffa450edef68
2 files changed, 2 insertions, 2 deletions
diff --git a/sca-java-2.x/trunk/modules/composite-diagram/src/main/java/org/apache/tuscany/sca/diagram/artifacts/Style.java b/sca-java-2.x/trunk/modules/composite-diagram/src/main/java/org/apache/tuscany/sca/diagram/artifacts/Style.java index 012ca72f26..14e4e7e909 100644 --- a/sca-java-2.x/trunk/modules/composite-diagram/src/main/java/org/apache/tuscany/sca/diagram/artifacts/Style.java +++ b/sca-java-2.x/trunk/modules/composite-diagram/src/main/java/org/apache/tuscany/sca/diagram/artifacts/Style.java @@ -60,7 +60,7 @@ public class Style { + " polyline.normalWire {" + " }\n" + " polyline.dashedWire {" - + " stroke-dasharray: \"3 3\";" + + " stroke-dasharray: 3,3;" + " }\n" + " rect.layer {" + " fill: #E5E5D0;" diff --git a/sca-java-2.x/trunk/modules/composite-diagram/src/main/resources/org/apache/tuscany/sca/diagram/artifacts/composite-diagram.css b/sca-java-2.x/trunk/modules/composite-diagram/src/main/resources/org/apache/tuscany/sca/diagram/artifacts/composite-diagram.css index 4a72235502..f0a006b4d0 100644 --- a/sca-java-2.x/trunk/modules/composite-diagram/src/main/resources/org/apache/tuscany/sca/diagram/artifacts/composite-diagram.css +++ b/sca-java-2.x/trunk/modules/composite-diagram/src/main/resources/org/apache/tuscany/sca/diagram/artifacts/composite-diagram.css @@ -59,5 +59,5 @@ polyline.normalWire { }
polyline.dashedWire {
- stroke-dasharray: "3 3";
+ stroke-dasharray: 3,3;
}
|