summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2007-05-11 22:51:15 +0000
committerishmal <ishmal@users.sourceforge.net>2007-05-11 22:51:15 +0000
commit265f45c8cef6009d6001b021e55b5834ee064fb7 (patch)
treef1b937ecd2fac05ad286932733045ec77f23fe11 /src
parentfixed fixme's in shapeeditor and changed verbs for node editting. helps with ... (diff)
downloadinkscape-265f45c8cef6009d6001b021e55b5834ee064fb7.tar.gz
inkscape-265f45c8cef6009d6001b021e55b5834ee064fb7.zip
Apply yfarjoun's one-line patch to remove any stroke from fill(), to accomodate strokeless objects. Strokes are handled separately in stroke().
(bzr r3001)
Diffstat (limited to 'src')
-rw-r--r--src/extension/internal/latex-pstricks.cpp2
1 files changed, 1 insertions, 1 deletions
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);