edje - somehow edje doesn't init evas and this makes edje_decc break...

@fix

how on earth has everything worked to date? someone must have remved
some evas_init from somewhere int he init codepath. this adds it back
in and edje_decc works again without a segv.
This commit is contained in:
Carsten Haitzler 2015-03-05 10:33:58 +09:00
parent 07a6d138a9
commit aa0324af36
1 changed files with 7 additions and 0 deletions

View File

@ -61,6 +61,12 @@ edje_init(void)
goto shutdown_embryo;
}
if (!evas_init())
{
ERR("Eet init failed");
goto shutdown_embryo;
}
_edje_scale = FROM_DOUBLE(1.0);
_edje_edd_init();
@ -164,6 +170,7 @@ _edje_shutdown_core(void)
ecore_imf_shutdown();
#endif
evas_shutdown();
eet_shutdown();
embryo_shutdown();
ecore_shutdown();