[gtk+/gtk-3-8] x11: Handle all XI2 crossing mode values in switch
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/gtk-3-8] x11: Handle all XI2 crossing mode values in switch
- Date: Thu, 5 Dec 2013 02:45:41 +0000 (UTC)
commit 860d9870019ea49de1485940001a485953658145
Author: Carlos Garnacho <carlosg gnome org>
Date: Wed Dec 4 12:34:31 2013 +0100
x11: Handle all XI2 crossing mode values in switch
This fixes potential assertions if a GTK+ app gets to receive
a XINotifyPassiveGrab/Ungrab pointer crossing event, currently
triggerable by XIGrabEnter passive grabs.
http://bugzilla.gnome.org/show_bug.cgi?id=719762
gdk/x11/gdkdevicemanager-xi2.c | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/gdk/x11/gdkdevicemanager-xi2.c b/gdk/x11/gdkdevicemanager-xi2.c
index fa02b65..c0368bf 100644
--- a/gdk/x11/gdkdevicemanager-xi2.c
+++ b/gdk/x11/gdkdevicemanager-xi2.c
@@ -780,12 +780,16 @@ translate_crossing_mode (gint mode)
{
switch (mode)
{
- case NotifyNormal:
+ case XINotifyNormal:
return GDK_CROSSING_NORMAL;
- case NotifyGrab:
+ case XINotifyGrab:
+ case XINotifyPassiveGrab:
return GDK_CROSSING_GRAB;
- case NotifyUngrab:
+ case XINotifyUngrab:
+ case XINotifyPassiveUngrab:
return GDK_CROSSING_UNGRAB;
+ case XINotifyWhileGrabbed:
+ /* Fall through, unexpected in pointer crossing events */
default:
g_assert_not_reached ();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]