extra: generate the theme cache var with efreet api

there can be some people who are changing the cache home directory to
some other value than the standard xdg stuff.
This commit is contained in:
Marcel Hollerbach 2017-01-09 22:06:20 +01:00
parent 439e748db0
commit d2c0eed7e2
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ _theme_cache_path_get()
char *path;
path = malloc(PATH_MAX * sizeof(char));
sprintf(path, "%s/.cache/%s/%s.json", eina_environment_home_get(), PACKAGE_NAME, "themes");
sprintf(path, "%s/%s/%s.json", efreet_cache_home_get(), PACKAGE_NAME, "themes");
return path;
}