diff options
| author | Liam P. White <inkscapebrony@gmail.com> | 2015-05-27 20:22:46 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebrony@gmail.com> | 2015-05-27 20:22:46 +0000 |
| commit | 6574890027dea3fc18aa1dd362ea54fedfef8966 (patch) | |
| tree | 38d18d4d0c768e4fc7c84f424d5545c657ec8a12 /src | |
| parent | Add 'font-variant-xxx' to properties that should not be set on non-text eleme... (diff) | |
| parent | Write line_width back to SVG after initially setting it on jointype and taper... (diff) | |
| download | inkscape-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.cpp | 1 | ||||
| -rw-r--r-- | src/live_effects/lpe-taperstroke.cpp | 1 |
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"); } |
