only set shape export flag during shape update event for non-overrides

This commit is contained in:
Mike Blumenkrantz 2014-01-22 21:42:38 -05:00
parent 14207e9770
commit ae4e98b856
1 changed files with 1 additions and 1 deletions

View File

@ -2429,7 +2429,7 @@ _e_comp_x_shape(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore_X_Event_Wind
{ {
/* bounding box changed, need export for rendering */ /* bounding box changed, need export for rendering */
EINA_RECTANGLE_SET(&ec->comp_data->shape, ev->x, ev->y, ev->w, ev->h); EINA_RECTANGLE_SET(&ec->comp_data->shape, ev->x, ev->y, ev->w, ev->h);
ec->need_shape_export = 1; ec->need_shape_export = !ec->override;
} }
ec->changes.shape = 1; ec->changes.shape = 1;
} }