evas: ensure even no-op renders emit RENDER_PRE

ref 67fae7aa0fdc9d778e8db88fc49bc149576994d2
This commit is contained in:
Mike Blumenkrantz 2017-05-12 12:08:32 -04:00
parent a3bd46d99f
commit ef471e4eca
1 changed files with 5 additions and 1 deletions

View File

@ -3079,7 +3079,11 @@ evas_render_updates_internal(Evas *eo_e,
e = evas = efl_data_scope_get(eo_e, EVAS_CANVAS_CLASS);
if (e->inside_post_render) return EINA_FALSE;
if (!e->changed) goto nothing2render;
if (!e->changed)
{
_cb_always_call(eo_e, EVAS_CALLBACK_RENDER_PRE, NULL);
goto nothing2render;
}
if (e->rendering)
{