From fd6c5fed808b962318ec655f065e7e378983e8f8 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Mon, 1 Jun 2020 20:12:07 +0300 Subject: [PATCH] shell: Do not remove the black surface if we don't have a background set for that output Bug-AGL: SPEC-3280 Signed-off-by: Marius Vlad Change-Id: I07ca7108e37dcdb992de0e2223bde3f9fa200863 --- src/shell.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shell.c b/src/shell.c index e1aac8d..6944f8a 100644 --- a/src/shell.c +++ b/src/shell.c @@ -606,7 +606,8 @@ shell_ready(struct wl_client *client, struct wl_resource *shell_res) ivi->shell_client.ready = true; wl_list_for_each(output, &ivi->outputs, link) { - remove_black_surface(output); + if (output->background) + remove_black_surface(output); ivi_layout_init(ivi, output); } -- 2.16.6