ecore_evas: Ecore_Evas_X - make sure that ecore evas post render is always called.

This fix a case where when doing asynchronous rendering and no update was done,
the post render evas event would never be triggered and so no call to ecore evas
post render callback were made. Now the async X backend follow all other backend
behavior.

@fix
This commit is contained in:
Cedric BAIL 2014-08-21 12:31:07 +02:00
parent 5320b86183
commit 5747c6fcea
1 changed files with 1 additions and 0 deletions

View File

@ -766,6 +766,7 @@ _ecore_evas_x_render(Ecore_Evas *ee)
ee->in_async_render = EINA_TRUE;
rend = 1;
}
else if (ee->func.fn_post_render) ee->func.fn_post_render(ee);
return rend;
}