summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-copy_rotate.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2016-03-02 19:34:31 +0000
committerjabiertxof <info@marker.es>2016-03-02 19:34:31 +0000
commit4aba6b92f30733f400891d2c3a6d77c1ae1d7a47 (patch)
tree68e2fff928c1f7306e9bdef0abfeb3fbfc1350f8 /src/live_effects/lpe-copy_rotate.cpp
parentAnother small change to miter-limit for 'arcs' join to match SVG spec. (diff)
downloadinkscape-4aba6b92f30733f400891d2c3a6d77c1ae1d7a47.tar.gz
inkscape-4aba6b92f30733f400891d2c3a6d77c1ae1d7a47.zip
Fix for bug 1540070
Fixed bugs: - https://launchpad.net/bugs/1540070 (bzr r14678)
Diffstat (limited to 'src/live_effects/lpe-copy_rotate.cpp')
-rw-r--r--src/live_effects/lpe-copy_rotate.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/live_effects/lpe-copy_rotate.cpp b/src/live_effects/lpe-copy_rotate.cpp
index 87d8f05a9..8dfaf7525 100644
--- a/src/live_effects/lpe-copy_rotate.cpp
+++ b/src/live_effects/lpe-copy_rotate.cpp
@@ -61,6 +61,7 @@ LPECopyRotate::LPECopyRotate(LivePathEffectObject *lpeobject) :
{
show_orig_path = true;
_provides_knotholder_entities = true;
+ apply_to_clippath_and_mask = true;
// register all your parameters here, so Inkscape knows which parameters this effect has:
registerParameter(&copiesTo360);
@@ -111,10 +112,6 @@ LPECopyRotate::doBeforeEffect (SPLPEItem const* lpeitem)
if(copiesTo360 ){
rot_pos = origin;
}
- SPLPEItem * item = const_cast<SPLPEItem*>(lpeitem);
- item->apply_to_clippath(item);
- item->apply_to_mask(item);
-
}