evas: technically the evas canvas is using the main loop, so let's make canvas depend on it for their lifecycle.

This commit is contained in:
Cedric Bail 2018-03-19 15:36:18 -07:00
parent 2d973475ee
commit 90bae9b271
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ evas_shutdown(void)
EAPI Evas *
evas_new(void)
{
Evas_Object *eo_obj = efl_add(EVAS_CANVAS_CLASS, NULL);
Evas_Object *eo_obj = efl_add(EVAS_CANVAS_CLASS, efl_main_loop_get());
return eo_obj;
}