summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-copy_rotate.cpp
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-07-02 16:33:20 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-07-02 16:33:20 +0000
commit37dc1dd695cd2db6dcda930866bf97c10076ca77 (patch)
tree214b3f9d8d6508725894695e80c77fce4ccd27bd /src/live_effects/lpe-copy_rotate.cpp
parentDon't dereference NULL knotholder; fixes instant crash, but using the handles... (diff)
downloadinkscape-37dc1dd695cd2db6dcda930866bf97c10076ca77.tar.gz
inkscape-37dc1dd695cd2db6dcda930866bf97c10076ca77.zip
Enable status bar tips for LPE handles that are automatically created from PointParams
(bzr r6118)
Diffstat (limited to 'src/live_effects/lpe-copy_rotate.cpp')
-rw-r--r--src/live_effects/lpe-copy_rotate.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/lpe-copy_rotate.cpp b/src/live_effects/lpe-copy_rotate.cpp
index 40a4b1a54..03cea89f7 100644
--- a/src/live_effects/lpe-copy_rotate.cpp
+++ b/src/live_effects/lpe-copy_rotate.cpp
@@ -38,10 +38,10 @@ public:
LPECopyRotate::LPECopyRotate(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
- include_original(_("Include original?"), _(""), "include_original", &wr, this, false),
+ include_original(_("Include original?"), _(""), "include_original", &wr, this, true),
angle(_("Angle"), _("Angle"), "angle", &wr, this, 30.0),
num_copies(_("Number of copies"), _("Number of copies of the original path"), "num_copies", &wr, this, 1),
- origin(_("Origin"), _("Origin of the rotation"), "origin", &wr, this),
+ origin(_("Origin"), _("Origin of the rotation"), "origin", &wr, this, "Adjust the origin of the rotation"),
dist_angle_handle(100)
{
show_orig_path = true;