summaryrefslogtreecommitdiffstats
path: root/src/select-context.cpp
diff options
context:
space:
mode:
authorDiederik van Lierop <mail@diedenrezi.nl>2009-08-09 09:02:00 +0000
committerdvlierop2 <dvlierop2@users.sourceforge.net>2009-08-09 09:02:00 +0000
commitee832838951cb097685f88478d896db2a35f0efb (patch)
treef893eb1dfb4c366e5df211680f65b298433d5937 /src/select-context.cpp
parentadd additional files for win32 distribution (diff)
downloadinkscape-ee832838951cb097685f88478d896db2a35f0efb.tar.gz
inkscape-ee832838951cb097685f88478d896db2a35f0efb.zip
When snapping while translating, use the bounding box corners of each selected item instead of the selection as a whole (fixes bug #404941)
(bzr r8449)
Diffstat (limited to 'src/select-context.cpp')
-rw-r--r--src/select-context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select-context.cpp b/src/select-context.cpp
index a5f5202ae..606934ca6 100644
--- a/src/select-context.cpp
+++ b/src/select-context.cpp
@@ -535,7 +535,7 @@ sp_select_context_root_handler(SPEventContext *event_context, GdkEvent *event)
if (item_at_point && !selection->includes(item_at_point))
selection->set(item_at_point);
} // otherwise, do not change selection so that dragging selected-within-group items, as well as alt-dragging, is possible
- seltrans->grab(p, -1, -1, FALSE);
+ seltrans->grab(p, -1, -1, FALSE, TRUE);
sc->moved = TRUE;
}
if (!seltrans->isEmpty())