diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2007-10-28 16:03:07 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2007-10-28 16:03:07 +0000 |
| commit | 96b65f32d922a989131ae91798801ea54c4e8b10 (patch) | |
| tree | 627327d9468b399e064111734831864c4730bc2a /src/sp-shape.cpp | |
| parent | added perfectboundcover.inx to translatable extensions (diff) | |
| download | inkscape-96b65f32d922a989131ae91798801ea54c4e8b10.tar.gz inkscape-96b65f32d922a989131ae91798801ea54c4e8b10.zip | |
LPE: implement 'edit next LPE parameter'. Accessible through key '7'.
(bzr r3968)
Diffstat (limited to 'src/sp-shape.cpp')
| -rw-r--r-- | src/sp-shape.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sp-shape.cpp b/src/sp-shape.cpp index 511081b4c..ddec7aecc 100644 --- a/src/sp-shape.cpp +++ b/src/sp-shape.cpp @@ -1214,6 +1214,14 @@ bool sp_shape_has_path_effect(SPShape *shape) return (shape->path_effect_href != NULL); } +void sp_shape_edit_next_param_oncanvas(SPShape *shape, SPDesktop *dt) +{ + LivePathEffectObject *lpeobj = sp_shape_get_livepatheffectobject(shape); + if (lpeobj && lpeobj->lpe) { + lpeobj->lpe->editNextParamOncanvas(SP_ITEM(shape), dt); + } +} + /* Local Variables: mode:c++ |
