Reinstate naturalscrolltrackpad patch from user @neuromagus

@neuromagus has noted his 2026-09-02 comment on issue #530 his consent
to the license structure described in issue #530. Accordingly, his
naturalscrolltrackpad patch is being re-instated.
This commit is contained in:
A Frederick Christensen
2026-09-03 09:33:05 -05:00
parent 18fe157743
commit dc517160a5
2 changed files with 44 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
### Description
Set natural scrolling only for trackpads. Without this patch, setting
`natural_scrolling` to 1 in `config.h` results in a regular mouse wheel having
natural scrolling enabled as well.
### Download
- [0.7](/dwl/dwl-patches/raw/branch/main/patches/naturalscrolltrackpad/naturalscrolltrackpad.patch)
### Authors
- [Nikita Ivanov](https://codeberg.org/nikitaivanov) ([GitHub](https://github.com/NikitaIvanovV))
- [Neuromagus](https://codeberg.org/neuromagus)
@@ -0,0 +1,30 @@
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