diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2017-10-01 15:49:53 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2017-10-01 15:49:53 +0000 |
| commit | 17edb1a6d1a35aeeeb4e07ec64ceec63351e8a25 (patch) | |
| tree | 86d7978cc682693b3841826c1d9036493a21c159 /src/path-chemistry.cpp | |
| parent | Removed all GSList occurences in .h files (diff) | |
| parent | A little styling tweak to a LPE expander (diff) | |
| download | inkscape-17edb1a6d1a35aeeeb4e07ec64ceec63351e8a25.tar.gz inkscape-17edb1a6d1a35aeeeb4e07ec64ceec63351e8a25.zip | |
Merge branch 'master' of gitlab.com:inkscape/inkscape
Diffstat (limited to 'src/path-chemistry.cpp')
| -rw-r--r-- | src/path-chemistry.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/path-chemistry.cpp b/src/path-chemistry.cpp index 043d47517..89cf6fb43 100644 --- a/src/path-chemistry.cpp +++ b/src/path-chemistry.cpp @@ -366,7 +366,12 @@ sp_item_list_to_curves(const std::vector<SPItem*> &items, std::vector<SPItem*>& { continue; } - + //TODO: decide if we want to unlink clones or not, for now keep previous functionality retaining clones as is + SPUse *use = dynamic_cast<SPUse *>(item); + if (use) { + continue; + } + SPPath *path = dynamic_cast<SPPath *>(item); if (path && !path->_curve_before_lpe) { // remove connector attributes |
