summaryrefslogtreecommitdiffstats
path: root/src/dialogs/stroke-style.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-08-20 01:38:47 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-08-20 01:38:47 +0000
commitce635b32fc9b5fa8efb13784198cda1dd5a26cb5 (patch)
tree1b6a6f6ebdd59dda778d62f5236a0cfede9a6048 /src/dialogs/stroke-style.cpp
parentsearch and reset buttons added to ocal related features. fixed signals in imp... (diff)
downloadinkscape-ce635b32fc9b5fa8efb13784198cda1dd5a26cb5.tar.gz
inkscape-ce635b32fc9b5fa8efb13784198cda1dd5a26cb5.zip
fix 1777084
(bzr r3545)
Diffstat (limited to 'src/dialogs/stroke-style.cpp')
-rw-r--r--src/dialogs/stroke-style.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/dialogs/stroke-style.cpp b/src/dialogs/stroke-style.cpp
index fd43d374c..c7e8d8989 100644
--- a/src/dialogs/stroke-style.cpp
+++ b/src/dialogs/stroke-style.cpp
@@ -470,6 +470,13 @@ sp_stroke_style_paint_changed(SPPaintSelector *psel, SPWidget *spw)
if (items) {
SPCSSAttr *css = sp_repr_css_attr_new ();
sp_repr_css_unset_property (css, "stroke");
+ sp_repr_css_unset_property (css, "stroke-opacity");
+ sp_repr_css_unset_property (css, "stroke-width");
+ sp_repr_css_unset_property (css, "stroke-miterlimit");
+ sp_repr_css_unset_property (css, "stroke-linejoin");
+ sp_repr_css_unset_property (css, "stroke-linecap");
+ sp_repr_css_unset_property (css, "stroke-dashoffset");
+ sp_repr_css_unset_property (css, "stroke-dasharray");
sp_desktop_set_style (desktop, css);
sp_repr_css_attr_unref (css);