|
|
|
@ -690,8 +690,11 @@ _e_comp_intercept_move(void *data, Evas_Object *obj, int x, int y) |
|
|
|
|
|
|
|
|
|
if ((cw->x == x) && (cw->y == y)) |
|
|
|
|
{ |
|
|
|
|
cw->ec->post_move = 0; |
|
|
|
|
cw->ec->x = x, cw->ec->y = y; |
|
|
|
|
if ((cw->ec->x != x) || (cw->ec->y != y)) |
|
|
|
|
{ |
|
|
|
|
cw->ec->post_move = 0; |
|
|
|
|
cw->ec->x = x, cw->ec->y = y; |
|
|
|
|
} |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (!cw->ec->maximize_override) |
|
|
|
@ -745,8 +748,11 @@ _e_comp_intercept_resize(void *data, Evas_Object *obj, int w, int h) |
|
|
|
|
|
|
|
|
|
if ((cw->w == w) && (cw->h == h)) |
|
|
|
|
{ |
|
|
|
|
cw->ec->post_resize = 0; |
|
|
|
|
cw->ec->w = w, cw->ec->h = h; |
|
|
|
|
if ((cw->ec->w != w) || (cw->ec->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))) |
|
|
|
|