diff options
Diffstat (limited to 'sway/input/seatop_default.c')
-rw-r--r-- | sway/input/seatop_default.c | 3 |
1 files changed, 1 insertions, 2 deletions
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; } |