tools: apply the config options for the event-gui helper too
authorPeter Hutterer <peter.hutterer@who-t.net>
Fri, 10 Apr 2015 05:45:35 +0000 (15:45 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Fri, 10 Apr 2015 05:53:13 +0000 (15:53 +1000)
This changes the current behavior of tapping enabled-by-default in the GUI
helper.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
tools/event-gui.c

index 75e4e19..3ce7418 100644 (file)
@@ -279,14 +279,8 @@ handle_event_device_notify(struct libinput_event *ev)
            libinput_device_get_name(dev),
            type);
 
-       if (libinput_device_config_tap_get_finger_count(dev) > 0) {
-               enum libinput_config_status status;
-               status = libinput_device_config_tap_set_enabled(dev,
-                                                               LIBINPUT_CONFIG_TAP_ENABLED);
-               if (status != LIBINPUT_CONFIG_STATUS_SUCCESS)
-                       error("%s: Failed to enable tapping\n",
-                             libinput_device_get_sysname(dev));
-       }
+       tools_device_apply_config(libinput_event_get_device(ev),
+                                 &options);
 
        li = libinput_event_get_context(ev);
        w = libinput_get_user_data(li);