summaryrefslogtreecommitdiffstats
path: root/src/path-chemistry.cpp
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2017-10-29 14:49:38 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2017-10-29 14:49:38 +0000
commit0016bc355626cbebba2e6301c019480fff9817c1 (patch)
tree794070f9ba9d9f3a2e7dcdaa4183dadc89cdb9fa /src/path-chemistry.cpp
parentMerge branch 'master' into SymbolsSearch (diff)
parentFix a bug converting to paths nested LPE with powerstroke (diff)
downloadinkscape-0016bc355626cbebba2e6301c019480fff9817c1.tar.gz
inkscape-0016bc355626cbebba2e6301c019480fff9817c1.zip
Merge branch 'master' into SymbolsSearch
Diffstat (limited to 'src/path-chemistry.cpp')
-rw-r--r--src/path-chemistry.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/path-chemistry.cpp b/src/path-chemistry.cpp
index 67a742ed2..b3b0c8076 100644
--- a/src/path-chemistry.cpp
+++ b/src/path-chemistry.cpp
@@ -398,9 +398,13 @@ sp_item_list_to_curves(const std::vector<SPItem*> &items, std::vector<SPItem*>&
continue;
}
-
+
+ SPLPEItem *lpeitem = dynamic_cast<SPLPEItem *>(item);
+ if (lpeitem) {
+ lpeitem->removeAllPathEffects(true);
+ }
+
if (group) {
- group->removeAllPathEffects(true);
std::vector<SPItem*> item_list = sp_item_group_item_list(group);
std::vector<Inkscape::XML::Node*> item_to_select;