From 84358dd4ef89dfacaae3ead1f798c1303a525855 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sun, 28 Apr 2024 20:29:00 +0200 Subject: [PATCH] feat: natural scrolling only for trackpad --- dwl.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dwl.c b/dwl.c index bf763df..49c642a 100644 --- a/dwl.c +++ b/dwl.c @@ -1000,11 +1000,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