Reverse loop in view_at

Looks for the top-most view now.
This commit is contained in:
Drew DeVault 2017-09-30 14:43:24 -04:00
parent bfb6914cdf
commit a471ed3ed0
1 changed files with 1 additions and 1 deletions

View File

@ -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;