From: cilix42 Date: Wed, 2 Jul 2008 17:39:56 +0000 (+0000) Subject: lpe-skeleton: add variable to control display of original path X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=80d34fe4a953d704430b44c6201a4fcbf455dfc6;p=inkscape.git lpe-skeleton: add variable to control display of original path --- 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) ); }