From: JucaBlues Date: Wed, 14 Jan 2009 06:44:31 +0000 (+0000) Subject: avoiding freehand drawings with LPEs with no fill at all. Using black by default... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=850cdd9a60b769d60c7c6b05d1b8c36ddc6be4fa;p=inkscape.git avoiding freehand drawings with LPEs with no fill at all. Using black by default. Johan, please correct-me in case I am mistaken. --- 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);