From 813e1209795f7016fd1223c5ce96b2185eed5a9a Mon Sep 17 00:00:00 2001 From: Antonin Décimo Date: Sat, 10 Aug 2019 17:03:20 +0200 Subject: Remove redundant checks --- sway/input/seatop_default.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sway/input') diff --git a/sway/input/seatop_default.c b/sway/input/seatop_default.c index e3726dd1..11382276 100644 --- a/sway/input/seatop_default.c +++ b/sway/input/seatop_default.c @@ -334,8 +334,7 @@ static void handle_button(struct sway_seat *seat, uint32_t time_msec, if (cont && is_floating_or_child && !is_fullscreen_or_child && state == WLR_BUTTON_PRESSED) { uint32_t btn_move = config->floating_mod_inverse ? BTN_RIGHT : BTN_LEFT; - if (button == btn_move && state == WLR_BUTTON_PRESSED && - (mod_pressed || on_titlebar)) { + if (button == btn_move && (mod_pressed || on_titlebar)) { while (cont->parent) { cont = cont->parent; } -- cgit v1.2.3