From: Marius Vlad Date: Thu, 26 Dec 2019 09:05:21 +0000 (+0200) Subject: homescreen/src: Flush pending events after the initial configure events X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=9e97727103f761474a70d5aef4cbfbc32562b4c0;p=apps%2Fhomescreen.git homescreen/src: Flush pending events after the initial configure events Flushing it afterwards results in blank screen on Qt 5.11. Signed-off-by: Marius Vlad Change-Id: I65807a4c86df33d4697cd5771ae7d3abed80c78d --- diff --git a/homescreen/src/main.cpp b/homescreen/src/main.cpp index 98cec6f..90027e3 100644 --- a/homescreen/src/main.cpp +++ b/homescreen/src/main.cpp @@ -200,13 +200,14 @@ int main(int argc, char *argv[]) output = static_cast(native->nativeResourceForScreen("output", screen)); struct wl_surface *bg = create_component(native, &bg_comp, screen); - agl_shell_set_background(agl_shell, bg, output); - struct wl_surface *top = create_component(native, &top_comp, screen); - agl_shell_set_panel(agl_shell, top, output, AGL_SHELL_EDGE_TOP); - struct wl_surface *bot = create_component(native, &bot_comp, screen); + + wl_display_dispatch(wl); + + agl_shell_set_panel(agl_shell, top, output, AGL_SHELL_EDGE_TOP); agl_shell_set_panel(agl_shell, bot, output, AGL_SHELL_EDGE_BOTTOM); + agl_shell_set_background(agl_shell, bg, output); } // Delay the ready signal until after Qt has done all of its own setup in a.exec()