diff --git a/src/bin/ephoto_main.c b/src/bin/ephoto_main.c index 6085935..edd813a 100644 --- a/src/bin/ephoto_main.c +++ b/src/bin/ephoto_main.c @@ -485,8 +485,8 @@ ephoto_thumb_path_set(Evas_Object *o, const char *path) format = ETHUMB_THUMB_JPEG; /* faster! */ else if ((strcasecmp(ext, "edj") == 0)) { - if (edje_file_group_exists(path, "e,desktop,background")) - group = "e,desktop,background"; + if (edje_file_group_exists(path, "e/desktop/background")) + group = "e/desktop/background"; else { Eina_List *g = edje_file_collection_list(path); diff --git a/src/bin/ephoto_single_browser.c b/src/bin/ephoto_single_browser.c index 1f9ea6e..bcdf249 100644 --- a/src/bin/ephoto_single_browser.c +++ b/src/bin/ephoto_single_browser.c @@ -99,8 +99,8 @@ _viewer_add(Evas_Object *parent, const char *path) ext++; if ((strcasecmp(ext, "edj") == 0)) { - if (edje_file_group_exists(path, "e,desktop,background")) - group = "e,desktop,background"; + if (edje_file_group_exists(path, "e/desktop/background")) + group = "e/desktop/background"; else { Eina_List *g = edje_file_collection_list(path); diff --git a/src/bin/ephoto_slideshow.c b/src/bin/ephoto_slideshow.c index 35f1a23..11171d6 100644 --- a/src/bin/ephoto_slideshow.c +++ b/src/bin/ephoto_slideshow.c @@ -147,8 +147,8 @@ _slideshow_item_get(void *data, Evas_Object *obj) ext++; if ((strcasecmp(ext, "edj") == 0)) { - if (edje_file_group_exists(entry->path, "e,desktop,background")) - group = "e,desktop,background"; + if (edje_file_group_exists(entry->path, "e/desktop/background")) + group = "e/desktop/background"; else { Eina_List *g = edje_file_collection_list(entry->path);