homescreen/src: Flush pending events after the initial configure events
authorMarius Vlad <marius.vlad@collabora.com>
Thu, 26 Dec 2019 09:05:21 +0000 (11:05 +0200)
committerMarius Vlad <marius.vlad@collabora.com>
Tue, 21 Jan 2020 18:09:46 +0000 (20:09 +0200)
Flushing it afterwards results in blank screen on Qt 5.11.

Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I65807a4c86df33d4697cd5771ae7d3abed80c78d

homescreen/src/main.cpp

index 98cec6f..90027e3 100644 (file)
@@ -200,13 +200,14 @@ int main(int argc, char *argv[])
         output = static_cast<struct wl_output *>(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()