summaryrefslogtreecommitdiffstats
path: root/src/object-edit.cpp
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-05-19 17:02:06 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-05-19 17:02:06 +0000
commit9b424870613f4b345cf64bdfcb03889077a0597a (patch)
tree9b5251a8c8cff0c47b82bd7f2c0aafd22a2b85b0 /src/object-edit.cpp
parentApplying several of Inductiveload's enhancements and fixes to his extensions.... (diff)
downloadinkscape-9b424870613f4b345cf64bdfcb03889077a0597a.tar.gz
inkscape-9b424870613f4b345cf64bdfcb03889077a0597a.zip
Add checkbox for LPEs to temporarily disable them on canvas (but keep them applied to the object)
(bzr r5711)
Diffstat (limited to 'src/object-edit.cpp')
-rw-r--r--src/object-edit.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/object-edit.cpp b/src/object-edit.cpp
index 46ab877b6..091c99734 100644
--- a/src/object-edit.cpp
+++ b/src/object-edit.cpp
@@ -73,6 +73,7 @@ SPKnotHolder *
sp_item_knot_holder(SPItem *item, SPDesktop *desktop)
{
if (sp_lpe_item_has_path_effect(SP_LPE_ITEM(item)) &&
+ sp_lpe_item_get_livepatheffect(SP_LPE_ITEM(item))->isVisible() &&
sp_lpe_item_get_livepatheffect(SP_LPE_ITEM(item))->providesKnotholder()) {
return sp_lpe_knot_holder(item, desktop);
} else