diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-07-02 16:33:20 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-07-02 16:33:20 +0000 |
| commit | 37dc1dd695cd2db6dcda930866bf97c10076ca77 (patch) | |
| tree | 214b3f9d8d6508725894695e80c77fce4ccd27bd /src/live_effects/lpe-lattice.cpp | |
| parent | Don't dereference NULL knotholder; fixes instant crash, but using the handles... (diff) | |
| download | inkscape-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-lattice.cpp')
| -rw-r--r-- | src/live_effects/lpe-lattice.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/live_effects/lpe-lattice.cpp b/src/live_effects/lpe-lattice.cpp index 6f929a9e5..8630c9cfa 100644 --- a/src/live_effects/lpe-lattice.cpp +++ b/src/live_effects/lpe-lattice.cpp @@ -45,22 +45,22 @@ LPELattice::LPELattice(LivePathEffectObject *lpeobject) : Effect(lpeobject), // initialise your parameters here: - grid_point0(_("Control handle 0"), _("Tadah"), "gridpoint0", &wr, this), - grid_point1(_("Control handle 1"), _("Tadah"), "gridpoint1", &wr, this), - grid_point2(_("Control handle 2"), _("Tadah"), "gridpoint2", &wr, this), - grid_point3(_("Control handle 3"), _("Tadah"), "gridpoint3", &wr, this), - grid_point4(_("Control handle 4"), _("Tadah"), "gridpoint4", &wr, this), - grid_point5(_("Control handle 5"), _("Tadah"), "gridpoint5", &wr, this), - grid_point6(_("Control handle 6"), _("Tadah"), "gridpoint6", &wr, this), - grid_point7(_("Control handle 7"), _("Tadah"), "gridpoint7", &wr, this), - grid_point8(_("Control handle 8"), _("Tadah"), "gridpoint8", &wr, this), - grid_point9(_("Control handle 9"), _("Tadah"), "gridpoint9", &wr, this), - grid_point10(_("Control handle 10"), _("Tadah"), "gridpoint10", &wr, this), - grid_point11(_("Control handle 11"), _("Tadah"), "gridpoint11", &wr, this), - grid_point12(_("Control handle 12"), _("Tadah"), "gridpoint12", &wr, this), - grid_point13(_("Control handle 13"), _("Tadah"), "gridpoint13", &wr, this), - grid_point14(_("Control handle 14"), _("Tadah"), "gridpoint14", &wr, this), - grid_point15(_("Control handle 15"), _("Tadah"), "gridpoint15", &wr, this) + grid_point0(_("Control handle 0"), _("Control handle 0"), "gridpoint0", &wr, this), + grid_point1(_("Control handle 1"), _("Control handle 1"), "gridpoint1", &wr, this), + grid_point2(_("Control handle 2"), _("Control handle 2"), "gridpoint2", &wr, this), + grid_point3(_("Control handle 3"), _("Control handle 3"), "gridpoint3", &wr, this), + grid_point4(_("Control handle 4"), _("Control handle 4"), "gridpoint4", &wr, this), + grid_point5(_("Control handle 5"), _("Control handle 5"), "gridpoint5", &wr, this), + grid_point6(_("Control handle 6"), _("Control handle 6"), "gridpoint6", &wr, this), + grid_point7(_("Control handle 7"), _("Control handle 7"), "gridpoint7", &wr, this), + grid_point8(_("Control handle 8"), _("Control handle 8"), "gridpoint8", &wr, this), + grid_point9(_("Control handle 9"), _("Control handle 9"), "gridpoint9", &wr, this), + grid_point10(_("Control handle 10"), _("Control handle 10"), "gridpoint10", &wr, this), + grid_point11(_("Control handle 11"), _("Control handle 11"), "gridpoint11", &wr, this), + grid_point12(_("Control handle 12"), _("Control handle 12"), "gridpoint12", &wr, this), + grid_point13(_("Control handle 13"), _("Control handle 13"), "gridpoint13", &wr, this), + grid_point14(_("Control handle 14"), _("Control handle 14"), "gridpoint14", &wr, this), + grid_point15(_("Control handle 15"), _("Control handle 15"), "gridpoint15", &wr, this) { // register all your parameters here, so Inkscape knows which parameters this effect has: |
