// ALT key pressed. Move the drawing accordingly using heuristic values.
int xDiff = CommonUtil.rnd((e.getX() - lastPoint.x) / 1.5);
int yDiff = CommonUtil.rnd((e.getY() - lastPoint.y) / 1.5);
// Convert to document coordinates
xDiff = view.applyScale(xDiff, true);
yDiff = view.applyScale(yDiff, true);
if (xDiff != 0 || yDiff != 0)
{
((Trackable) getEditor()).moveTrackerBy(xDiff, yDiff);