re-enable checking of current client geometry when get a configure

message.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-06-23 16:47:01 -04:00
parent 832cfa8f3d
commit 2ab2a9a36f
1 changed files with 4 additions and 4 deletions

View File

@ -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;