mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
Add click method libinput option (#1416)
<libinput>
<device>
<clickMethod>none|buttonAreas|clickfinger</clickMethod>
</device>
</libinput>
This commit is contained in:
parent
17bad48d87
commit
8be9c38460
6 changed files with 53 additions and 1 deletions
18
src/seat.c
18
src/seat.c
|
|
@ -189,6 +189,24 @@ configure_libinput(struct wlr_input_device *wlr_input_device)
|
|||
wlr_log(WLR_INFO, "dwt configured");
|
||||
libinput_device_config_dwt_set_enabled(libinput_dev, dc->dwt);
|
||||
}
|
||||
if ((libinput_device_config_click_get_methods(libinput_dev)
|
||||
& dc->click_method) == 0
|
||||
|| dc->click_method < 0) {
|
||||
wlr_log(WLR_INFO, "click method not configured");
|
||||
} else {
|
||||
wlr_log(WLR_INFO, "click method configured");
|
||||
|
||||
/*
|
||||
* Note, the documentation claims that:
|
||||
* > [...] The device may require changing to a neutral state
|
||||
* > first before activating the new method.
|
||||
*
|
||||
* However, just setting the method seems to work without
|
||||
* issues.
|
||||
*/
|
||||
|
||||
libinput_device_config_click_set_method(libinput_dev, dc->click_method);
|
||||
}
|
||||
}
|
||||
|
||||
static struct wlr_output *
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue