mirror of
https://codeberg.org/dwl/dwl-patches.git
synced 2025-09-06 19:24:51 +00:00
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From 63f38e7ccda8067a0558a6e81baad89ffbba9d6a Mon Sep 17 00:00:00 2001
|
|
From: Nikita Ivanov <nikita.vyach.ivanov@gmail.com>
|
|
Date: Sat, 8 Feb 2025 16:31:09 +0100
|
|
Subject: [PATCH] Set natural scrolling only for trackpads
|
|
|
|
---
|
|
dwl.c | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/dwl.c b/dwl.c
|
|
index def2562..f6bb544 100644
|
|
--- a/dwl.c
|
|
+++ b/dwl.c
|
|
@@ -1085,10 +1085,10 @@ createpointer(struct wlr_pointer *pointer)
|
|
libinput_device_config_tap_set_drag_enabled(device, tap_and_drag);
|
|
libinput_device_config_tap_set_drag_lock_enabled(device, drag_lock);
|
|
libinput_device_config_tap_set_button_map(device, button_map);
|
|
- }
|
|
|
|
- if (libinput_device_config_scroll_has_natural_scroll(device))
|
|
- libinput_device_config_scroll_set_natural_scroll_enabled(device, natural_scrolling);
|
|
+ if (libinput_device_config_scroll_has_natural_scroll(device))
|
|
+ libinput_device_config_scroll_set_natural_scroll_enabled(device, natural_scrolling);
|
|
+ }
|
|
|
|
if (libinput_device_config_dwt_is_available(device))
|
|
libinput_device_config_dwt_set_enabled(device, disable_while_typing);
|
|
--
|
|
2.48.1
|
|
|