summaryrefslogtreecommitdiffstats
path: root/src/desktop-events.cpp
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2008-07-08 03:01:39 +0000
committermental <mental@users.sourceforge.net>2008-07-08 03:01:39 +0000
commitd9af95f7409e88c603b8292f8521e0d0953efc52 (patch)
tree45afc8e85ea8be902c1a017fe47b1a8e769ffdfc /src/desktop-events.cpp
parentdisable motion hints again (diff)
downloadinkscape-d9af95f7409e88c603b8292f8521e0d0953efc52.tar.gz
inkscape-d9af95f7409e88c603b8292f8521e0d0953efc52.zip
I'm an idiot who forgot that MOTION_HINT_MASK still needs MOTION_MASK
(bzr r6222)
Diffstat (limited to 'src/desktop-events.cpp')
-rw-r--r--src/desktop-events.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/desktop-events.cpp b/src/desktop-events.cpp
index 32cb341ac..6f63aa3ce 100644
--- a/src/desktop-events.cpp
+++ b/src/desktop-events.cpp
@@ -226,7 +226,7 @@ gint sp_dt_guide_event(SPCanvasItem *item, GdkEvent *event, gpointer data)
sp_canvas_item_grab(item,
( GDK_BUTTON_RELEASE_MASK |
GDK_BUTTON_PRESS_MASK |
- GDK_POINTER_MOTION_HINT_MASK ),
+ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK ),
NULL,
event->button.time);
ret = TRUE;