[mutter/wip/carlosg/issue-529] clutter: Fix check for keyboard a11y features
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter/wip/carlosg/issue-529] clutter: Fix check for keyboard a11y features
- Date: Thu, 28 Mar 2019 11:04:06 +0000 (UTC)
commit 34ee46022e467fda89a781dd07f90061a42d984d
Author: Carlos Garnacho <carlosg gnome org>
Date: Thu Mar 28 11:58:35 2019 +0100
clutter: Fix check for keyboard a11y features
The typo was actually toggling the feature on for those who had it
disabled.
Closes: https://gitlab.gnome.org/GNOME/mutter/issues/529
clutter/clutter/evdev/clutter-input-device-evdev.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/clutter/clutter/evdev/clutter-input-device-evdev.c
b/clutter/clutter/evdev/clutter-input-device-evdev.c
index 25a8139a2..b52689e80 100644
--- a/clutter/clutter/evdev/clutter-input-device-evdev.c
+++ b/clutter/clutter/evdev/clutter-input-device-evdev.c
@@ -1132,7 +1132,7 @@ clutter_input_device_evdev_process_kbd_a11y_event (ClutterEvent *e
if (event->key.flags & CLUTTER_EVENT_FLAG_INPUT_METHOD)
goto emit_event;
- if (!device_evdev->a11y_flags & CLUTTER_A11Y_KEYBOARD_ENABLED)
+ if (!(device_evdev->a11y_flags & CLUTTER_A11Y_KEYBOARD_ENABLED))
goto emit_event;
if (event->type == CLUTTER_KEY_PRESS)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]