Sfoglia il codice sorgente

Be sure not to fill paths

Getty Ritter 6 anni fa
parent
commit
f6b70f80c5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/lib.rs

+ 1 - 1
src/lib.rs

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