aboutsummaryrefslogtreecommitdiff
path: root/rootston
diff options
context:
space:
mode:
authorGreg V <greg@unrelenting.technology>2019-01-02 20:08:43 +0300
committerGreg V <greg@unrelenting.technology>2019-01-04 16:13:04 +0300
commit57edfacba455c8883a09378a3073ff7561bc43c8 (patch)
treed8603df1e4de0642df7a064a55fd3496f7cde5af /rootston
parentbcf48931db14f24fcd35a6999969864ca2539d32 (diff)
rootston: fix crash with fullscreen surfaces
Fixes fullscreen mode in e.g. RetroArch and ioquake3.
Diffstat (limited to 'rootston')
-rw-r--r--rootston/output.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/rootston/output.c b/rootston/output.c
index f950d4dc..df8328dd 100644
--- a/rootston/output.c
+++ b/rootston/output.c
@@ -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;