Code

lpe-skeleton: add variable to control display of original path
authorcilix42 <cilix42@users.sourceforge.net>
Wed, 2 Jul 2008 17:39:56 +0000 (17:39 +0000)
committercilix42 <cilix42@users.sourceforge.net>
Wed, 2 Jul 2008 17:39:56 +0000 (17:39 +0000)
src/live_effects/lpe-skeleton.cpp

index dede71cddcfd27af0f6a1bf57da5a8822cd661fc..c1a3e2601d521136026d0d5642d9f3eab127ea5f 100644 (file)
@@ -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) );
 }