evas: Fixed to compare current render_op with previous render_op for textblock. If the render_op is changed, call evas_object_render_pre_prev_cur_add.

Summary: This change is related to the commit: cdb86e34bb

Reviewers: woohyun, tasn, Hermet, seoz

CC: cedric

Differential Revision: https://phab.enlightenment.org/D450
This commit is contained in:
Youngbok Shin 2014-01-18 19:06:16 +09:00 committed by ChunEon Park
parent 84cd13bf96
commit a2c4c40474
1 changed files with 6 additions and 0 deletions

View File

@ -11328,6 +11328,12 @@ evas_object_textblock_render_pre(Evas_Object *eo_obj,
eo_obj, obj);
goto done;
}
if (obj->cur->render_op != obj->prev->render_op)
{
evas_object_render_pre_prev_cur_add(&obj->layer->evas->clip_changes,
eo_obj, obj);
goto done;
}
done:
evas_object_render_pre_effect_updates(&obj->layer->evas->clip_changes,
eo_obj, is_v, was_v);