Browse Source

Be sure not to fill paths

Getty Ritter 6 years ago
parent
commit
f6b70f80c5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib.rs

+ 1 - 1
src/lib.rs

@@ -165,7 +165,7 @@ impl AsSVG for Line {
 
 
             xml_tag(
             xml_tag(
                 buf, "path",
                 buf, "path",
-                &[("d", &path), ("stroke", &"black")],
+                &[("d", &path), ("stroke", &"black"), ("fill", &"none")],
             );
             );
         }
         }
     }
     }