mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Only use gdk_input_select_events() if XINPUT_NONE is defined
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=601337
This commit is contained in:
parent
c32c2882b2
commit
ecc3065f76
@ -399,10 +399,12 @@ gdk_input_set_extension_events (GdkWindow *window, gint mask,
|
||||
GdkExtensionMode mode)
|
||||
{
|
||||
GdkWindowObject *window_private;
|
||||
GList *tmp_list;
|
||||
GdkWindowObject *impl_window;
|
||||
GdkInputWindow *iw;
|
||||
GdkDisplayX11 *display_x11;
|
||||
#ifndef XINPUT_NONE
|
||||
GList *tmp_list;
|
||||
#endif
|
||||
|
||||
g_return_if_fail (window != NULL);
|
||||
g_return_if_fail (GDK_WINDOW_IS_X11 (window));
|
||||
@ -452,6 +454,7 @@ gdk_input_set_extension_events (GdkWindow *window, gint mask,
|
||||
unset_extension_events (window);
|
||||
}
|
||||
|
||||
#ifndef XINPUT_NONE
|
||||
for (tmp_list = display_x11->input_devices; tmp_list; tmp_list = tmp_list->next)
|
||||
{
|
||||
GdkDevicePrivate *gdkdev = tmp_list->data;
|
||||
@ -459,6 +462,7 @@ gdk_input_set_extension_events (GdkWindow *window, gint mask,
|
||||
if (!GDK_IS_CORE (gdkdev))
|
||||
_gdk_input_select_events ((GdkWindow *)impl_window, gdkdev);
|
||||
}
|
||||
#endif /* !XINPUT_NONE */
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
Reference in New Issue
Block a user