discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=bc7fb14a9c0007c6cc7db81576cbf005af0f9f47
commit bc7fb14a9c0007c6cc7db81576cbf005af0f9f47 Author: Mike Blumenkrantz <[email protected]> Date: Fri Apr 7 16:06:41 2017 -0400 ecore-wl2: stop setting all windows as toplevels on creation this is not a valid assumption since toplevel is a shell-specific concept and it's possible to run a shell which does not implement such windows @fix --- src/lib/ecore_wl2/ecore_wl2_window.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/ecore_wl2/ecore_wl2_window.c b/src/lib/ecore_wl2/ecore_wl2_window.c index e923e7e..b95f724 100644 --- a/src/lib/ecore_wl2/ecore_wl2_window.c +++ b/src/lib/ecore_wl2/ecore_wl2_window.c @@ -570,8 +570,6 @@ ecore_wl2_window_new(Ecore_Wl2_Display *display, Ecore_Wl2_Window *parent, int x win->opaque.w = w; win->opaque.h = h; - win->type = ECORE_WL2_WINDOW_TYPE_TOPLEVEL; - win->pending.configure = EINA_TRUE; display->windows = --
