libinput: support <dragLock>sticky<dragLock> and enable it by default

It is recommended by libinput:
https://lists.freedesktop.org/archives/wayland-devel/2024-November/043860.html
This commit is contained in:
tokyo4j 2025-06-07 19:27:05 +09:00 committed by Johan Malm
parent cc84cee75b
commit 22d319cce8
5 changed files with 26 additions and 6 deletions

View file

@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-2.0-only
#include <string.h>
#include <strings.h>
#include "config.h"
#include "common/mem.h"
#include "common/list.h"
#include "common/string-helpers.h"
@ -19,7 +19,11 @@ libinput_category_init(struct libinput_category *l)
l->tap = LIBINPUT_CONFIG_TAP_ENABLED;
l->tap_button_map = LIBINPUT_CONFIG_TAP_MAP_LRM;
l->tap_and_drag = -1;
#if HAVE_LIBINPUT_CONFIG_DRAG_LOCK_ENABLED_STICKY
l->drag_lock = LIBINPUT_CONFIG_DRAG_LOCK_ENABLED_STICKY;
#else
l->drag_lock = -1;
#endif
l->accel_profile = -1;
l->middle_emu = -1;
l->dwt = -1;