diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-06-01 20:12:07 +0300 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-06-15 10:09:04 +0000 |
commit | b491db3111b98e008a31ac817b9987db1b47f35f (patch) | |
tree | c88526744e0f725e9b0c72523b0379eb22a4c135 | |
parent | c6941d7484dd2b6c50ad37e2763f363b7264d4e5 (diff) |
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 <marius.vlad@collabora.com>
Change-Id: I07ca7108e37dcdb992de0e2223bde3f9fa200863
-rw-r--r-- | src/shell.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); } |