discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8927a33f64f60b6dd8dc6bff01ffeaf6cb839260
commit 8927a33f64f60b6dd8dc6bff01ffeaf6cb839260 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Fri Mar 13 14:35:28 2015 -0400 ecore-wl xdg surface configure no longer requires special case for fs/max the surface size comes directly from the compositor shell when applicable --- src/lib/ecore_wayland/ecore_wl_window.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/ecore_wayland/ecore_wl_window.c b/src/lib/ecore_wayland/ecore_wl_window.c index de336f3..074549e 100644 --- a/src/lib/ecore_wayland/ecore_wl_window.c +++ b/src/lib/ecore_wayland/ecore_wl_window.c @@ -1039,8 +1039,6 @@ _ecore_xdg_handle_surface_configure(void *data, struct xdg_surface *xdg_surface } if ((width > 0) && (height > 0)) _ecore_wl_window_configure_send(win, width, height, 0); - else if (win->fullscreen || win->maximized) - _ecore_wl_window_configure_send(win, 0, 0, 0); if (win->xdg_surface) xdg_surface_ack_configure(win->xdg_surface, serial); --