aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rootston/desktop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/desktop.c b/rootston/desktop.c
index fcfc0ccf..8d1d34d6 100644
--- a/rootston/desktop.c
+++ b/rootston/desktop.c
@@ -86,7 +86,7 @@ static struct wlr_subsurface *subsurface_at(struct wlr_surface *surface,
struct roots_view *view_at(struct roots_desktop *desktop, double lx, double ly,
struct wlr_surface **surface, double *sx, double *sy) {
- for (size_t i = 0; i < desktop->views->length; ++i) {
+ for (int i = desktop->views->length - 1; i >= 0; --i) {
struct roots_view *view = desktop->views->items[i];
double view_sx = lx - view->x;