cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=90bae9b2715bbd45dc80bc1dfbc03dceed207713
commit 90bae9b2715bbd45dc80bc1dfbc03dceed207713 Author: Cedric Bail <[email protected]> Date: Mon Mar 19 15:36:18 2018 -0700 evas: technically the evas canvas is using the main loop, so let's make canvas depend on it for their lifecycle. --- src/lib/evas/canvas/evas_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/evas/canvas/evas_main.c b/src/lib/evas/canvas/evas_main.c index 45fae21bce..ed4ff3a1c0 100644 --- a/src/lib/evas/canvas/evas_main.c +++ b/src/lib/evas/canvas/evas_main.c @@ -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; } --
