From: buliabyak Date: Sat, 10 Mar 2007 02:45:40 +0000 (+0000) Subject: now all knots display x/y in statusbar while being dragged, fixes bug 1523580 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7cf45ac70d2c8d1ce19c944ce172d9d93a34bdb6;p=inkscape.git now all knots display x/y in statusbar while being dragged, fixes bug 1523580 --- diff --git a/src/knot.cpp b/src/knot.cpp index d65b64299..d8b3548d7 100644 --- a/src/knot.cpp +++ b/src/knot.cpp @@ -379,6 +379,7 @@ static int sp_knot_handler(SPCanvasItem *item, GdkEvent *event, SPKnot *knot) NR::Point p = motion_dt - knot->grabbed_rel_pos; sp_knot_request_position (knot, &p, event->motion.state); knot->desktop->scroll_to_point (&motion_dt); + knot->desktop->set_coordinate_status(knot->pos); // display the coordinate of knot, not cursor - they may be different! moved = TRUE; } break;