edje: unset efreet cache update flag to prevent dbus connections

efreet_init began to be called with the addition of translatable strings,
but allowing dbus connections in edje (and thus edje-derived tools) will
result in errors when edje_init is called without a dbus connection available
This commit is contained in:
Mike Blumenkrantz 2015-06-22 14:53:13 -04:00
parent 12257053a0
commit 1edb35fff3
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#include "edje_private.h"
extern int efreet_cache_update;
static Edje_Version _version = { VMAJ, VMIN, VMIC, VREV };
EAPI Edje_Version * edje_version = &_version;
@ -69,6 +70,7 @@ edje_init(void)
goto shutdown_eet;
}
efreet_cache_update = 0;
if (!efreet_init())
{
ERR("Efreet init failed");