diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index f8c5d34fc..0d38be89f 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -2608,9 +2608,18 @@ _e_comp_smart_resize(Evas_Object *obj, int w, int h) /* resize render update tiler */ if (!first) { - RENDER_DEBUG("DAMAGE UNFULL: %p", cw->ec); - cw->updates_full = 0; - if (cw->updates) eina_tiler_clear(cw->updates); + if (cw->updates) + { + int tw, th; + + eina_tiler_area_size_get(cw->updates, &tw, &th); + if ((tw != pw) || (th != ph)) + { + RENDER_DEBUG("DAMAGE UNFULL: %p", cw->ec); + cw->updates_full = 0; + eina_tiler_clear(cw->updates); + } + } } else {