diff options
Diffstat (limited to 'src/knotholder.cpp')
| -rw-r--r-- | src/knotholder.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/knotholder.cpp b/src/knotholder.cpp index 59059c2a8..c26082baa 100644 --- a/src/knotholder.cpp +++ b/src/knotholder.cpp @@ -85,8 +85,6 @@ KnotHolder::~KnotHolder() { void KnotHolder::update_knots() { - Geom::Affine const i2d(item->i2d_affine()); - for(std::list<KnotHolderEntity *>::iterator i = entity.begin(); i != entity.end(); ++i) { KnotHolderEntity *e = *i; e->update_knot(); @@ -165,8 +163,8 @@ KnotHolder::knot_moved_handler(SPKnot *knot, Geom::Point const &p, guint state) for(std::list<KnotHolderEntity *>::iterator i = this->entity.begin(); i != this->entity.end(); ++i) { KnotHolderEntity *e = *i; if (e->knot == knot) { - Geom::Point const q = p * item->i2d_affine().inverse(); - e->knot_set(q, e->knot->drag_origin * item->i2d_affine().inverse(), state); + Geom::Point const q = p * item->i2dt_affine().inverse(); + e->knot_set(q, e->knot->drag_origin * item->i2dt_affine().inverse(), state); break; } } |
