From 2ead0b8ee67da4f9642ec971248cfdbc30547cd5 Mon Sep 17 00:00:00 2001 From: Felipe Corr??a da Silva Sanches Date: Wed, 14 Jan 2009 06:44:31 +0000 Subject: avoiding freehand drawings with LPEs with no fill at all. Using black by default. Johan, please correct-me in case I am mistaken. (bzr r7131) --- src/draw-context.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/draw-context.cpp b/src/draw-context.cpp index 7fdda437c..98fee29bf 100644 --- a/src/draw-context.cpp +++ b/src/draw-context.cpp @@ -373,7 +373,12 @@ spdc_check_for_and_apply_waiting_LPE(SPDrawContext *dc, SPItem *item) if (shape_applied) { // apply original stroke color as fill and unset stroke; then return SPCSSAttr *css = sp_repr_css_attr_new(); - sp_repr_css_set_property (css, "fill", cstroke); + + if (!strcmp(cstroke, "none")){ + sp_repr_css_set_property (css, "fill", "black"); + } else { + sp_repr_css_set_property (css, "fill", cstroke); + } sp_repr_css_set_property (css, "stroke", "none"); sp_desktop_apply_css_recursive(SP_OBJECT(item), css, true); sp_repr_css_attr_unref(css); -- cgit v1.2.3