diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-10-29 14:49:38 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-10-29 14:49:38 +0000 |
| commit | 0016bc355626cbebba2e6301c019480fff9817c1 (patch) | |
| tree | 794070f9ba9d9f3a2e7dcdaa4183dadc89cdb9fa /src/path-chemistry.cpp | |
| parent | Merge branch 'master' into SymbolsSearch (diff) | |
| parent | Fix a bug converting to paths nested LPE with powerstroke (diff) | |
| download | inkscape-0016bc355626cbebba2e6301c019480fff9817c1.tar.gz inkscape-0016bc355626cbebba2e6301c019480fff9817c1.zip | |
Merge branch 'master' into SymbolsSearch
Diffstat (limited to 'src/path-chemistry.cpp')
| -rw-r--r-- | src/path-chemistry.cpp | 8 |
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; |
