summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-10-08 20:51:05 -0500
committerLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-10-08 20:51:05 -0500
commit1438dfc1509b22612166407c565f65f635d3ab97 (patch)
tree274b69153abd48d13d1036e88ceaad5fc1bbc128
parent3902fba76961beff924e900e3de3f952d7f98bbc (diff)
fix bad indentation in createpointer()
-rw-r--r--dwl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dwl.c b/dwl.c
index 78e8d54..c77464f 100644
--- a/dwl.c
+++ b/dwl.c
@@ -1059,8 +1059,8 @@ createpointer(struct wlr_input_device *device)
if (libinput_device_config_scroll_get_methods(libinput_device) != LIBINPUT_CONFIG_SCROLL_NO_SCROLL)
libinput_device_config_scroll_set_method (libinput_device, scroll_method);
- if (libinput_device_config_click_get_methods(libinput_device) != LIBINPUT_CONFIG_CLICK_METHOD_NONE)
- libinput_device_config_click_set_method (libinput_device, click_method);
+ if (libinput_device_config_click_get_methods(libinput_device) != LIBINPUT_CONFIG_CLICK_METHOD_NONE)
+ libinput_device_config_click_set_method (libinput_device, click_method);
if (libinput_device_config_send_events_get_modes(libinput_device))
libinput_device_config_send_events_set_mode(libinput_device, send_events_mode);