mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 13:04:11 +01:00
Fix focus_follows_mouse issues
This commit is contained in:
parent
b08f7e5183
commit
cca420b2f8
@ -116,7 +116,16 @@ static struct sway_container *container_at_cursor(struct sway_cursor *cursor,
|
||||
return ws;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
c = seat_get_focus_inactive(cursor->seat, output->swayc);
|
||||
if (c) {
|
||||
return c;
|
||||
}
|
||||
if (!c && output->swayc->children->length) {
|
||||
c = output->swayc->children->items[0];
|
||||
return c;
|
||||
}
|
||||
|
||||
return output->swayc;
|
||||
}
|
||||
|
||||
static void cursor_send_pointer_motion(struct sway_cursor *cursor,
|
||||
|
Loading…
Reference in New Issue
Block a user