summaryrefslogtreecommitdiffstats
path: root/src/pen-context.cpp
diff options
context:
space:
mode:
authorDiederik van Lierop <mail@diedenrezi.nl>2009-03-07 20:47:00 +0000
committerdvlierop2 <dvlierop2@users.sourceforge.net>2009-03-07 20:47:00 +0000
commit86f80d1c9bd6cc3716c049da3d8c94887211648e (patch)
treebed9547bd809863fa7c66af9ec1f1c654f1f8b54 /src/pen-context.cpp
parentSnap indicators and filters, mainly... (diff)
downloadinkscape-86f80d1c9bd6cc3716c049da3d8c94887211648e.tar.gz
inkscape-86f80d1c9bd6cc3716c049da3d8c94887211648e.zip
- When finalizing a curve by double clicking then don't snap to the curve itself
- When a node and an intersection coincide then snap to the node, not the intersection (but only if snapping is turned on for both of them of course) (bzr r7438)
Diffstat (limited to 'src/pen-context.cpp')
-rw-r--r--src/pen-context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pen-context.cpp b/src/pen-context.cpp
index d0889b4ec..7ffabcefd 100644
--- a/src/pen-context.cpp
+++ b/src/pen-context.cpp
@@ -476,7 +476,7 @@ static gint pen_handle_button_press(SPPenContext *const pc, GdkEventButton const
if (!(bevent.state & GDK_SHIFT_MASK)) {
SnapManager &m = desktop->namedview->snap_manager;
m.setup(desktop);
- m.freeSnapReturnByRef(Inkscape::SnapPreferences::SNAPPOINT_NODE, p, Inkscape::SNAPSOURCE_HANDLE);
+ m.freeSnapReturnByRef(Inkscape::SnapPreferences::SNAPPOINT_NODE, p, Inkscape::SNAPSOURCE_HANDLE);
}
spdc_create_single_dot(event_context, p, "/tools/freehand/pen", bevent.state);
ret = TRUE;