Merge pull request #1448 from myfreeweb/fix-retroarch-crash

rootston: fix crash with fullscreen surfaces
This commit is contained in:
emersion 2019-01-04 16:02:33 +01:00 committed by GitHub
commit aebd74243f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -67,6 +67,10 @@ static void surface_for_each_surface(struct wlr_surface *surface,
static void view_for_each_surface(struct roots_view *view,
struct layout_data *layout_data, wlr_surface_iterator_func_t iterator,
void *user_data) {
if (!view->wlr_surface) {
return;
}
layout_data->x = view->box.x;
layout_data->y = view->box.y;
layout_data->width = view->wlr_surface->current.width;