add click method configuration option

Add the libinput configuration option to choose between Software Button Areas and Clickfinger
This commit is contained in:
Marco Siedentopf
2022-06-10 01:30:22 +00:00
committed by Leonardo Hernández Hernández
parent c008bf2a7d
commit 8bce3b1583
2 changed files with 10 additions and 0 deletions

3
dwl.c
View File

@@ -1003,6 +1003,9 @@ createpointer(struct wlr_input_device *device)
if (libinput_device_config_scroll_get_methods(libinput_device) != LIBINPUT_CONFIG_SCROLL_NO_SCROLL)
libinput_device_config_scroll_set_method (libinput_device, scroll_method);
if (libinput_device_config_click_get_methods(libinput_device) != LIBINPUT_CONFIG_CLICK_METHOD_NONE)
libinput_device_config_click_set_method (libinput_device, click_method);
if (libinput_device_config_send_events_get_modes(libinput_device))
libinput_device_config_send_events_set_mode(libinput_device, send_events_mode);