rootston: fix segfault in view_at

Make sure the view is mapped.
This commit is contained in:
emersion 2018-10-28 14:14:35 +01:00
parent 659d39baaa
commit 1454d1c8f8
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 3 additions and 0 deletions

View File

@ -576,6 +576,9 @@ static bool view_at(struct roots_view *view, double lx, double ly,
view->wl_shell_surface->state == WLR_WL_SHELL_SURFACE_STATE_POPUP) {
return false;
}
if (view->wlr_surface == NULL) {
return false;
}
double view_sx = lx - view->x;
double view_sy = ly - view->y;