extra: the config does not always end with a /

This commit is contained in:
Marcel Hollerbach 2017-01-08 11:59:45 +01:00
parent fe0f1138f6
commit c1cedbcc05
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ extra_theme_install_path_get(Extra_Theme *theme)
buf = eina_strbuf_new();
eina_strbuf_append(buf, elm_theme_user_dir_get());
eina_strbuf_append_printf(buf, "%s-%d.edj", theme->id, theme->version);
eina_strbuf_append_printf(buf, "/%s-%d.edj", theme->id, theme->version);
path = eina_strbuf_string_steal(buf);
eina_strbuf_free(buf);
return path;