diff options
-rw-r--r-- | sway/input/seat.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c index 920742e9..502bc0bc 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -288,8 +288,11 @@ static void handle_seat_node_destroy(struct wl_listener *listener, void *data) { } // The structure change might have caused it to move up to the top of // the focus stack without sending focus notifications to the view - seat_send_focus(next_focus, seat); - seat_set_focus(seat, next_focus); + if (seat_get_focus(seat) == next_focus) { + seat_send_focus(next_focus, seat); + } else { + seat_set_focus(seat, next_focus); + } } else { // Setting focus_inactive focus = seat_get_focus_inactive(seat, &root->node); |