summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-test-doEffect-stack.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/live_effects/lpe-test-doEffect-stack.cpp b/src/live_effects/lpe-test-doEffect-stack.cpp
index f20ce8cec..93e1add0a 100644
--- a/src/live_effects/lpe-test-doEffect-stack.cpp
+++ b/src/live_effects/lpe-test-doEffect-stack.cpp
@@ -18,11 +18,13 @@ namespace LivePathEffect {
LPEdoEffectStackTest::LPEdoEffectStackTest(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
- step(_("Stack step"), (""), "step", &wr, this),
- point(_("point param"), "", "point_param", &wr, this)
+ step(_("Stack step"), ("How deep we should go into the stack"), "step", &wr, this),
+ point(_("point param"), "tooltip of point parameter", "point_param", &wr, this)
{
registerParameter( dynamic_cast<Parameter *>(&step) );
registerParameter( dynamic_cast<Parameter *>(&point) );
+
+ point.set_oncanvas_looks(SP_KNOT_SHAPE_SQUARE, SP_KNOT_MODE_XOR, 0x00ff0000);
}
LPEdoEffectStackTest::~LPEdoEffectStackTest()