aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/input-manager.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/input-manager.c')
-rw-r--r--sway/input/input-manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/input-manager.c b/sway/input/input-manager.c
index d789c7eb..a406636e 100644
--- a/sway/input/input-manager.c
+++ b/sway/input/input-manager.c
@@ -282,7 +282,7 @@ bool sway_input_manager_has_focus(struct sway_input_manager *input,
282 swayc_t *container) { 282 swayc_t *container) {
283 struct sway_seat *seat = NULL; 283 struct sway_seat *seat = NULL;
284 wl_list_for_each(seat, &input->seats, link) { 284 wl_list_for_each(seat, &input->seats, link) {
285 if (seat->focus == container) { 285 if (seat->has_focus && sway_seat_get_focus(seat, &root_container) == container) {
286 return true; 286 return true;
287 } 287 }
288 } 288 }