summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-03-20 23:01:46 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-03-20 23:01:46 +0000
commit6221765d0adf870fca702a9cc2273978785a8679 (patch)
treebe2d5b034b5e7ac4f892510cc2bdfc971cccd6e6
parentAdd on-canvas editing of LPE PointParam. (diff)
downloadinkscape-6221765d0adf870fca702a9cc2273978785a8679.tar.gz
inkscape-6221765d0adf870fca702a9cc2273978785a8679.zip
define color of point parameter in LPEdoEffectStackTest
add tooltips to parameters of LPEdoEffectStackTest (bzr r5134)
-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()