summaryrefslogtreecommitdiffstats
path: root/src/gradient-drag.cpp
diff options
context:
space:
mode:
authorDiederik van Lierop <mailat-signdiedenrezidotnl>2010-05-08 21:27:22 +0000
committerDiederik van Lierop <mailat-signdiedenrezidotnl>2010-05-08 21:27:22 +0000
commitf9ab8626b2915e99acb6c5d759f5fa5d9e350a89 (patch)
tree34016bf36e7e846ce9fe103107f4a5eda2516510 /src/gradient-drag.cpp
parentExtensions. Fix for XAML export objects properties and layer visibility (Bug ... (diff)
downloadinkscape-f9ab8626b2915e99acb6c5d759f5fa5d9e350a89.tar.gz
inkscape-f9ab8626b2915e99acb6c5d759f5fa5d9e350a89.zip
Fix bounding box snapping (LP562205, comment 6, issue II)
(bzr r9402)
Diffstat (limited to 'src/gradient-drag.cpp')
-rw-r--r--src/gradient-drag.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gradient-drag.cpp b/src/gradient-drag.cpp
index 9796fc5da..11de93d68 100644
--- a/src/gradient-drag.cpp
+++ b/src/gradient-drag.cpp
@@ -665,7 +665,7 @@ gr_knot_moved_handler(SPKnot *knot, Geom::Point const &ppointer, guint state, gp
s.setTransformation(s.getPoint() - p);
sc.points.push_back(s);
} else {
- Inkscape::SnappedPoint dummy(p + *snap_vector, Inkscape::SNAPSOURCE_OTHER_HANDLE, 0, Inkscape::SNAPTARGET_CONSTRAINED_ANGLE, Geom::L2(*snap_vector), 10000, true, false);
+ Inkscape::SnappedPoint dummy(p + *snap_vector, Inkscape::SNAPSOURCE_OTHER_HANDLE, 0, Inkscape::SNAPTARGET_CONSTRAINED_ANGLE, Geom::L2(*snap_vector), 10000, true, true, false);
dummy.setTransformation(*snap_vector);
sc.points.push_back(dummy);
}