aboutsummaryrefslogtreecommitdiff
path: root/sway/input/cursor.c
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-08-08 13:49:00 +0100
committerGitHub <noreply@github.com>2018-08-08 13:49:00 +0100
commit89e176d3fbee3b7f35185dffa71ab42214eb1f3f (patch)
tree2aeea57d78619aad0476e53a422218b929718664 /sway/input/cursor.c
parentc8a8216629cd56a510255f6ead3eaba9508b6544 (diff)
parentf5dc3ac09d6f44d51b5bb7f8f5ac863cd228afd8 (diff)
Merge pull request #2436 from RyanDwyer/fix-floating-deco-focus
Fix focus when clicking floating decorations
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r--sway/input/cursor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 80b4f9dc..3f417e96 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -429,6 +429,8 @@ static void dispatch_cursor_button_floating(struct sway_cursor *cursor,
struct sway_container *cont) {
struct sway_seat *seat = cursor->seat;
+ seat_set_focus(seat, cont);
+
// Deny moving or resizing a fullscreen container
if (container_is_fullscreen_or_child(cont)) {
seat_pointer_notify_button(seat, time_msec, button, state);
@@ -469,8 +471,6 @@ static void dispatch_cursor_button_floating(struct sway_cursor *cursor,
return;
}
- // Send event to surface
- seat_set_focus(seat, cont);
seat_pointer_notify_button(seat, time_msec, button, state);
}