summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2019-07-31 15:18:54 -0400
committerFurkan Sahin <furkan-dev@proton.me>2019-07-31 15:18:54 -0400
commit07c1b9b1f7be5cf8137760fbf4daae42d2c32dd7 (patch)
tree1fa8966965a052a83cfb6f334a56c12a48170711
parentb575132b6dc5ebf06c3bd8f989ab137843ecec36 (diff)
libinput: fix set_send_events
This just fixes the check in set_send_events for whether the mode has changed. LIBINPUT_CONFIG_SEND_EVENTS_ENABLED is 0 so the bitmask check cannot be fixed, but Sway doesn't allow multiple modes to be set anyway (not really sure why you would need to) so a basic equality check works
-rw-r--r--sway/input/libinput.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/libinput.c b/sway/input/libinput.c
index d8847a23..ef51e998 100644
--- a/sway/input/libinput.c
+++ b/sway/input/libinput.c
@@ -15,7 +15,7 @@ static void log_status(enum libinput_config_status status) {
}
static bool set_send_events(struct libinput_device *device, uint32_t mode) {
- if ((libinput_device_config_send_events_get_mode(device) & mode) == 0) {
+ if (libinput_device_config_send_events_get_mode(device) == mode) {
return false;
}
sway_log(SWAY_DEBUG, "send_events_set_mode(%d)", mode);