diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2010-01-22 10:54:17 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2010-01-22 10:54:17 +0000 |
| commit | 0283c65f9605dc7690e8b1f302a9754426a8b6c2 (patch) | |
| tree | f1b428708bc6a3f2b85d384ebaa4ee37d174d8af /src/live_effects/parameter/path.cpp | |
| parent | disable softproofing if no get display id ONLY if source profile is to be tak... (diff) | |
| download | inkscape-0283c65f9605dc7690e8b1f302a9754426a8b6c2.tar.gz inkscape-0283c65f9605dc7690e8b1f302a9754426a8b6c2.zip | |
Fix some of the LPE issues.
(bzr r9013)
Diffstat (limited to 'src/live_effects/parameter/path.cpp')
| -rw-r--r-- | src/live_effects/parameter/path.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/parameter/path.cpp b/src/live_effects/parameter/path.cpp index 1ea9ac506..94540a255 100644 --- a/src/live_effects/parameter/path.cpp +++ b/src/live_effects/parameter/path.cpp @@ -195,7 +195,7 @@ PathParam::param_newWidget(Gtk::Tooltips * tooltips) } void -PathParam::param_editOncanvas(SPItem * /*item*/, SPDesktop * dt) +PathParam::param_editOncanvas(SPItem *item, SPDesktop * dt) { using namespace Inkscape::UI; @@ -209,7 +209,7 @@ PathParam::param_editOncanvas(SPItem * /*item*/, SPDesktop * dt) ShapeRecord r; r.role = SHAPE_ROLE_LPE_PARAM; - r.edit_transform = Geom::identity(); // TODO this is almost certainly wrong + r.edit_transform = sp_item_i2d_affine(item); // TODO is it right? if (!href) { r.item = reinterpret_cast<SPItem*>(param_effect->getLPEObj()); r.lpe_key = param_key; |
