reapply geometry and unset post flags when a client intercept gets the current geometry

This commit is contained in:
Mike Blumenkrantz 2014-02-12 19:50:50 -05:00
parent 0b2e3ea2e3
commit 7571ccb2d8
1 changed files with 12 additions and 2 deletions

View File

@ -688,7 +688,12 @@ _e_comp_intercept_move(void *data, Evas_Object *obj, int x, int y)
E_Comp_Object *cw = data;
int ix, iy;
if ((cw->x == x) && (cw->y == y)) return;
if ((cw->x == x) && (cw->y == y))
{
cw->ec->post_move = 0;
cw->ec->x = x, cw->ec->y = y;
return;
}
if ((cw->ec->maximized & E_MAXIMIZE_DIRECTION) == E_MAXIMIZE_VERTICAL)
y = cw->y;
if ((cw->ec->maximized & E_MAXIMIZE_DIRECTION) == E_MAXIMIZE_HORIZONTAL)
@ -735,7 +740,12 @@ _e_comp_intercept_resize(void *data, Evas_Object *obj, int w, int h)
E_Comp_Object *cw = data;
int pw, ph, fw, fh, iw, ih, prev_w, prev_h;
if ((cw->w == w) && (cw->h == h)) return;
if ((cw->w == w) && (cw->h == h))
{
cw->ec->post_resize = 0;
cw->ec->w = w, cw->ec->h = h;
return;
}
if (cw->ec->fullscreen && ((w != cw->ec->zone->w) || (h != cw->ec->zone->h)))
return;
/* calculate client size */