From dd8b88d102fa13c92a26253e52a2d5f6b8e0216c Mon Sep 17 00:00:00 2001 From: Axel Davy Date: Sun, 17 Nov 2013 21:34:16 +0100 Subject: [PATCH] Wayland backend: set the opaque region when starting fullscreen The opaque region is not set when we start the nested compositor fullscreen. This patch fixes this. Signed-off-by: Axel Davy --- src/compositor-wayland.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compositor-wayland.c b/src/compositor-wayland.c index ed3923be..7b280b8d 100644 --- a/src/compositor-wayland.c +++ b/src/compositor-wayland.c @@ -1613,6 +1613,7 @@ backend_init(struct wl_display *display, int *argc, char *argv[], if (!output) goto err_outputs; + wayland_output_set_fullscreen(output, 0, 0, NULL); return &c->base; }