]> git.mdlowis.com Git - proto/labwc.git/commitdiff
CodeStyle: double indent in if statement
authortokyo4j <hrak1529@gmail.com>
Sat, 2 Sep 2023 08:32:29 +0000 (17:32 +0900)
committerJohan Malm <johanmalm@users.noreply.github.com>
Thu, 7 Sep 2023 21:55:50 +0000 (22:55 +0100)
src/seat.c

index 4af628cc8a4914a6abf81c9454a491d8f0372dcb..a565fc7883d36f2f00e07a09b46abc22676d6163 100644 (file)
@@ -96,7 +96,7 @@ configure_libinput(struct wlr_input_device *wlr_input_device)
        }
 
        if (libinput_device_config_scroll_has_natural_scroll(libinput_dev) <= 0
-               || dc->natural_scroll < 0) {
+                       || dc->natural_scroll < 0) {
                wlr_log(WLR_INFO, "natural scroll not configured");
        } else {
                wlr_log(WLR_INFO, "natural scroll configured");
@@ -105,7 +105,7 @@ configure_libinput(struct wlr_input_device *wlr_input_device)
        }
 
        if (libinput_device_config_left_handed_is_available(libinput_dev) <= 0
-               || dc->left_handed < 0) {
+                       || dc->left_handed < 0) {
                wlr_log(WLR_INFO, "left-handed mode not configured");
        } else {
                wlr_log(WLR_INFO, "left-handed mode configured");
@@ -137,7 +137,7 @@ configure_libinput(struct wlr_input_device *wlr_input_device)
        }
 
        if (libinput_device_config_dwt_is_available(libinput_dev) == 0
-               || dc->dwt < 0) {
+                       || dc->dwt < 0) {
                wlr_log(WLR_INFO, "dwt not configured");
        } else {
                wlr_log(WLR_INFO, "dwt configured");