From: Marius Vlad Date: Fri, 12 Aug 2022 14:20:01 +0000 (+0300) Subject: desktop: Include REMOTE role in initial configuration X-Git-Tag: 17.90.0~81 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=bb79d12c92fa6e860319c4c730d4c5c9e23932a2;p=src%2Fagl-compositor.git desktop: Include REMOTE role in initial configuration The REMOTE role is identical to the DESKTOP one (its merely a tag), so it should go in the same category. Fixes 13ac8bab43fffd00. Bug-AGL: SPEC-4520 Reported-by: Vasyl Vavrychuk Change-Id: Iddf7b5ba644cb7317c5f5ac6645c0f149ab1d05d --- diff --git a/src/desktop.c b/src/desktop.c index 1351508..c5981a7 100644 --- a/src/desktop.c +++ b/src/desktop.c @@ -128,7 +128,8 @@ desktop_surface_added_configure(struct ivi_surface *surface, ivi_check_pending_surface_desktop(surface, &role); if ((role != IVI_SURFACE_ROLE_DESKTOP && - role != IVI_SURFACE_ROLE_FULLSCREEN) || + role != IVI_SURFACE_ROLE_FULLSCREEN && + role != IVI_SURFACE_ROLE_REMOTE) || role == IVI_SURFACE_ROLE_NONE) return;