summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLiam P. White <inkscapebrony@gmail.com>2015-05-27 20:22:46 +0000
committerLiam P. White <inkscapebrony@gmail.com>2015-05-27 20:22:46 +0000
commit6574890027dea3fc18aa1dd362ea54fedfef8966 (patch)
tree38d18d4d0c768e4fc7c84f424d5545c657ec8a12 /src
parentAdd 'font-variant-xxx' to properties that should not be set on non-text eleme... (diff)
parentWrite line_width back to SVG after initially setting it on jointype and taper... (diff)
downloadinkscape-6574890027dea3fc18aa1dd362ea54fedfef8966.tar.gz
inkscape-6574890027dea3fc18aa1dd362ea54fedfef8966.zip
Merge lp:~dasprid/inkscape/width-forgetting-fix into lp:inkscape
(bzr r14180)
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-jointype.cpp1
-rw-r--r--src/live_effects/lpe-taperstroke.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/live_effects/lpe-jointype.cpp b/src/live_effects/lpe-jointype.cpp
index 0111a0f99..c6a08d336 100644
--- a/src/live_effects/lpe-jointype.cpp
+++ b/src/live_effects/lpe-jointype.cpp
@@ -110,6 +110,7 @@ void LPEJoinType::doOnApply(SPLPEItem const* lpeitem)
sp_repr_css_attr_unref (css);
line_width.param_set_value(width);
+ line_width.write_to_SVG();
}
}
diff --git a/src/live_effects/lpe-taperstroke.cpp b/src/live_effects/lpe-taperstroke.cpp
index 1f2c3c79e..5765febbd 100644
--- a/src/live_effects/lpe-taperstroke.cpp
+++ b/src/live_effects/lpe-taperstroke.cpp
@@ -126,6 +126,7 @@ void LPETaperStroke::doOnApply(SPLPEItem const* lpeitem)
sp_repr_css_attr_unref (css);
line_width.param_set_value(width);
+ line_width.write_to_SVG();
} else {
printf("WARNING: It only makes sense to apply Taper stroke to paths (not groups).\n");
}