diff --git a/src/object/sp-lpe-item.cpp b/src/object/sp-lpe-item.cpp index 38d1c68ac77a46316c3fa7174a287cec009733cf..a1fb32cfdccb01aafe67fbd7de22e840843db30a 100755 --- a/src/object/sp-lpe-item.cpp +++ b/src/object/sp-lpe-item.cpp @@ -1387,6 +1387,12 @@ void sp_lpe_item_enable_path_effects(SPLPEItem *lpeitem, bool enable) // Are the path effects enabled on this item ? bool SPLPEItem::pathEffectsEnabled() const { + // we supress on cliboard LPE calculations + Inkscape::XML::Node *root = this->document->getReprRoot(); + Inkscape::XML::Node *clipnode = sp_repr_lookup_name(root, "inkscape:clipboard", 1); + if (clipnode) { + return false; + } return path_effects_enabled > 0; }