From: ishmal Date: Fri, 11 May 2007 22:51:15 +0000 (+0000) Subject: Apply yfarjoun's one-line patch to remove any stroke from fill(), to accomodate strok... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=bb4a96c096eda596fa1701dceff81c06a4255c99;p=inkscape.git Apply yfarjoun's one-line patch to remove any stroke from fill(), to accomodate strokeless objects. Strokes are handled separately in stroke(). --- diff --git a/src/extension/internal/latex-pstricks.cpp b/src/extension/internal/latex-pstricks.cpp index f33a0d2b8..a2d0d87f7 100644 --- a/src/extension/internal/latex-pstricks.cpp +++ b/src/extension/internal/latex-pstricks.cpp @@ -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);