From ee5013463467fb8eb6e08b0ebdf384ad2c1783a0 Mon Sep 17 00:00:00 2001 From: David96 Date: Thu, 3 Jan 2019 13:11:35 +0100 Subject: Apply tiling_drag_threshold to all containers --- sway/input/cursor.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sway/input/cursor.c') diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 516251f7..66a9e435 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -1020,9 +1020,8 @@ void dispatch_cursor_button(struct sway_cursor *cursor, seat_pointer_notify_button(seat, time_msec, button, state); - // If moving a previously unfocused container by it's title bar, use a - // threshold for the drag. - if (!mod_pressed && !focused && config->tiling_drag_threshold > 0) { + // If moving a container by it's title bar, use a threshold for the drag + if (!mod_pressed && config->tiling_drag_threshold > 0) { seat_begin_move_tiling_threshold(seat, cont, button); } else { seat_begin_move_tiling(seat, cont, button); -- cgit v1.2.3-54-g00ecf