[gtk+/client-side-windows: 34/284] Don't sent native MotionHint masks on pointer grabs as then we won't get enought motion events repor
- From: Alexander Larsson <alexl src gnome org>
- To: svn-commits-list gnome org
- Subject: [gtk+/client-side-windows: 34/284] Don't sent native MotionHint masks on pointer grabs as then we won't get enought motion events repor
- Date: Thu, 2 Apr 2009 14:02:34 -0400 (EDT)
commit 7536708c4bdf254c048cb79e4a4bc5683a8501c6
Author: Alexander Larsson <alexl redhat com>
Date: Sun Dec 7 12:17:48 2008 +0100
Don't sent native MotionHint masks on pointer grabs as then we won't get enought motion events reported.
---
gdk/x11/gdkmain-x11.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/gdk/x11/gdkmain-x11.c b/gdk/x11/gdkmain-x11.c
index 89a9c75..5be1101 100644
--- a/gdk/x11/gdkmain-x11.c
+++ b/gdk/x11/gdkmain-x11.c
@@ -206,7 +206,7 @@ gdk_pointer_grab (GdkWindow * window,
native = gdk_window_get_toplevel (window);
- /* TODO: What do we do for offscreens and children? We need to proxy the grab somehow */
+ /* TODO: What do we do for offscreens and their children? We need to proxy the grab somehow */
if (!GDK_IS_WINDOW_IMPL_X11 (GDK_WINDOW_OBJECT (native)->impl))
return GDK_GRAB_SUCCESS;
@@ -239,6 +239,11 @@ gdk_pointer_grab (GdkWindow * window,
if (event_mask & (1 << (i + 1)))
xevent_mask |= _gdk_event_mask_table[i];
}
+
+ /* We don't want to set a native motion hint mask, as we're emulating motion
+ * hints. If we set a native one we just wouldn't get any events.
+ */
+ xevent_mask &= ~PointerMotionHintMask;
return_val = _gdk_input_grab_pointer (native,
owner_events,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]