From 850cdd9a60b769d60c7c6b05d1b8c36ddc6be4fa Mon Sep 17 00:00:00 2001 From: JucaBlues Date: Wed, 14 Jan 2009 06:44:31 +0000 Subject: [PATCH] avoiding freehand drawings with LPEs with no fill at all. Using black by default. Johan, please correct-me in case I am mistaken. --- src/draw-context.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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); -- 2.30.2