diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-09-30 16:47:13 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-09-30 16:47:13 +0000 |
| commit | 0f5574afd93303c82c1ae34fd1c59791c4d81217 (patch) | |
| tree | 9def68b5cd4aa6eca7367bc3e2971c5b0561727e /src/path-chemistry.cpp | |
| parent | Fix bug in comment #20 From Maren in bug #1715433. Clone original LPE can no ... (diff) | |
| download | inkscape-0f5574afd93303c82c1ae34fd1c59791c4d81217.tar.gz inkscape-0f5574afd93303c82c1ae34fd1c59791c4d81217.zip | |
Fix bug #1719505 segfault on convert to path
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 7840c4ca8..6c4b67bef 100644 --- a/src/path-chemistry.cpp +++ b/src/path-chemistry.cpp @@ -368,7 +368,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 |
