summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-07-02 17:39:56 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-07-02 17:39:56 +0000
commit25c7d18bf18453a100447fdd779c4d8c581d5031 (patch)
tree1a7b2527f988c61aec6bef737889166fb4bac55c /src
parentHandle for PerspectivePath LPE to adjust offset (not ideal yet but better tha... (diff)
downloadinkscape-25c7d18bf18453a100447fdd779c4d8c581d5031.tar.gz
inkscape-25c7d18bf18453a100447fdd779c4d8c581d5031.zip
lpe-skeleton: add variable to control display of original path
(bzr r6121)
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) );
}