From 2ab2a9a36f7f17f85d44eb62c9c37594d147b831 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 23 Jun 2014 16:47:01 -0400 Subject: [PATCH] re-enable checking of current client geometry when get a configure message. Signed-off-by: Chris Michael --- src/modules/wl_desktop_shell/e_mod_main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/wl_desktop_shell/e_mod_main.c b/src/modules/wl_desktop_shell/e_mod_main.c index 09a063686..0acc7c71b 100644 --- a/src/modules/wl_desktop_shell/e_mod_main.c +++ b/src/modules/wl_desktop_shell/e_mod_main.c @@ -465,7 +465,7 @@ _e_shell_surface_configure(struct wl_resource *resource, Evas_Coord x, Evas_Coor } } - // if ((ec->client.x != x) || (ec->client.y != y)) + if ((ec->client.x != x) || (ec->client.y != y)) { ec->client.x = x; ec->client.y = y; @@ -474,7 +474,7 @@ _e_shell_surface_configure(struct wl_resource *resource, Evas_Coord x, Evas_Coor 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; @@ -1038,7 +1038,7 @@ _e_xdg_shell_surface_configure(struct wl_resource *resource, Evas_Coord x, Evas_ } } -// if ((ec->client.x != x) || (ec->client.y != y)) + if ((ec->client.x != x) || (ec->client.y != y)) { ec->client.x = x; ec->client.y = y; @@ -1047,7 +1047,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;