From 80d34fe4a953d704430b44c6201a4fcbf455dfc6 Mon Sep 17 00:00:00 2001 From: cilix42 Date: Wed, 2 Jul 2008 17:39:56 +0000 Subject: [PATCH] lpe-skeleton: add variable to control display of original path --- src/live_effects/lpe-skeleton.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(&number) ); } -- 2.30.2