diff options
| author | Liam P. White <inkscapebrony@gmail.com> | 2014-07-28 21:25:41 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebrony@gmail.com> | 2014-07-28 21:25:41 +0000 |
| commit | c263637743407a181ac2f12226727553bda6cb37 (patch) | |
| tree | d8e4ee994c993b28b89bf99c33408e9e890bec9c /src | |
| parent | related to lp:inkscape r13474, remove unnecessary/broken placement news (diff) | |
| download | inkscape-c263637743407a181ac2f12226727553bda6cb37.tar.gz inkscape-c263637743407a181ac2f12226727553bda6cb37.zip | |
Fix for copy&paste clone original with clip-path/mask
Fixed bugs:
- https://launchpad.net/bugs/1293979
(bzr r13478)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/clipboard.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ui/clipboard.cpp b/src/ui/clipboard.cpp index 8e2502545..1209b19cd 100644 --- a/src/ui/clipboard.cpp +++ b/src/ui/clipboard.cpp @@ -601,6 +601,12 @@ Glib::ustring ClipboardManagerImpl::getPathParameter(SPDesktop* desktop) */ Glib::ustring ClipboardManagerImpl::getShapeOrTextObjectId(SPDesktop *desktop) { + // https://bugs.launchpad.net/inkscape/+bug/1293979 + // basically, when we do a depth-first search, we're stopping + // at the first object to be <svg:path> or <svg:text>. + // but that could then return the id of the object's + // clip path or mask, not the original path! + SPDocument *tempdoc = _retrieveClipboard(); // any target will do here if ( tempdoc == NULL ) { _userWarn(desktop, _("Nothing on the clipboard.")); @@ -608,6 +614,9 @@ Glib::ustring ClipboardManagerImpl::getShapeOrTextObjectId(SPDesktop *desktop) } Inkscape::XML::Node *root = tempdoc->getReprRoot(); + // 1293979: strip out the defs of the document + root->removeChild(tempdoc->getDefs()->getRepr()); + Inkscape::XML::Node *repr = sp_repr_lookup_name(root, "svg:path", -1); // unlimited search depth if ( repr == NULL ) { repr = sp_repr_lookup_name(root, "svg:text", -1); |
