From f2e1cf4261d6b0e7c28f85eef46c6f98a4df3f8e Mon Sep 17 00:00:00 2001 From: Vyacheslav Reutskiy Date: Tue, 9 Aug 2016 14:22:39 +0300 Subject: [PATCH] edje_pick: set the correct file name for copied sample @fix --- src/bin/edje/edje_pick.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/edje/edje_pick.c b/src/bin/edje/edje_pick.c index 4082291fd4..90375dc717 100644 --- a/src/bin/edje/edje_pick.c +++ b/src/bin/edje/edje_pick.c @@ -912,13 +912,13 @@ _edje_pick_sounds_add(Edje_File *edf) Edje_Sound_Sample *sample = &edf->sound_dir->samples[k]; snprintf(buf, sizeof(buf), "edje/sounds/%i", sample->id); - VERBOSE(EINA_LOG_INFO("Trying to read <%s>\n", sample->name)); + VERBOSE(EINA_LOG_INFO("Trying to read <%s>\n", sample->snd_src)); data = eet_read(edf->ef, buf, &size); if (size) { Edje_Pick_Data *smpl = malloc(sizeof(*smpl)); - smpl->filename = eina_stringshare_add(sample->name); + smpl->filename = eina_stringshare_add(sample->snd_src); smpl->data = data; smpl->size = size; smpl->entry = (void *) sample; /* for output file sound dir */