Fix pointer events for overlapping floating views

Fixes #2315.
This commit is contained in:
Ryan Dwyer 2018-07-20 09:41:36 +10:00
parent d28c4c0094
commit 8789ceea87

View file

@ -660,7 +660,9 @@ struct sway_container *floating_container_at(double lx, double ly,
if (!workspace_is_visible(workspace)) {
continue;
}
for (int k = 0; k < ws->floating->children->length; ++k) {
// Items at the end of the list are on top, so iterate the list in
// reverse.
for (int k = ws->floating->children->length - 1; k >= 0; --k) {
struct sway_container *floater =
ws->floating->children->items[k];
struct wlr_box box = {