Code

Apply yfarjoun's one-line patch to remove any stroke from fill(), to accomodate strok...
authorishmal <ishmal@users.sourceforge.net>
Fri, 11 May 2007 22:51:15 +0000 (22:51 +0000)
committerishmal <ishmal@users.sourceforge.net>
Fri, 11 May 2007 22:51:15 +0000 (22:51 +0000)
src/extension/internal/latex-pstricks.cpp

index f33a0d2b8775c9d329e9571d67c0b5c6277e3761..a2d0d87f7a02fef8d4066624b733d19b3fe6d1f9 100644 (file)
@@ -221,7 +221,7 @@ PrintLatex::fill(Inkscape::Extension::Print *mod,
         sp_color_get_rgb_floatv(&style->fill.value.color, rgb);
         os << "{\n\\newrgbcolor{curcolor}{" << rgb[0] << " " << rgb[1] << " " << rgb[2] << "}\n";
 
-        os << "\\pscustom[fillstyle=solid,fillcolor=curcolor]\n{\n";
+        os << "\\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]\n{\n";
 
         print_bpath(os, bpath->path, transform);