summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-skeleton.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/live_effects/lpe-skeleton.cpp b/src/live_effects/lpe-skeleton.cpp
index dede71cdd..c1a3e2601 100644
--- a/src/live_effects/lpe-skeleton.cpp
+++ b/src/live_effects/lpe-skeleton.cpp
@@ -32,7 +32,10 @@ LPESkeleton::LPESkeleton(LivePathEffectObject *lpeobject) :
// initialise your parameters here:
number(_("Float parameter"), _("just a real number like 1.4!"), "svgname", &wr, this, 1.2)
{
- // register all your parameters here, so Inkscape knows which parameters this effect has:
+ /* uncomment the following line to have the original path displayed while the item is selected */
+ //show_orig_path = true;
+
+ /* register all your parameters here, so Inkscape knows which parameters this effect has: */
registerParameter( dynamic_cast<Parameter *>(&number) );
}