devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=e8c7b82dabf980095a63e44bc34568cee984dc03
commit e8c7b82dabf980095a63e44bc34568cee984dc03 Author: Chris Michael <cp.mich...@samsung.com> Date: Thu Jan 22 14:31:03 2015 -0500 Ignore checking size of client and just always send new size. This fixed basic-->advanced dialogs here Signed-off-by: Chris Michael <cp.mich...@samsung.com> --- src/modules/wl_desktop_shell/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/wl_desktop_shell/e_mod_main.c b/src/modules/wl_desktop_shell/e_mod_main.c index 1170f85..584909e 100644 --- a/src/modules/wl_desktop_shell/e_mod_main.c +++ b/src/modules/wl_desktop_shell/e_mod_main.c @@ -1066,7 +1066,7 @@ _e_xdg_shell_surface_configure(struct wl_resource *resource, Evas_Coord x, Evas_ ec->changes.pos = EINA_TRUE; } - if ((ec->client.w != w) || (ec->client.h != h)) +// if ((ec->client.w != w) || (ec->client.h != h)) { ec->client.w = w; ec->client.h = h; --