fix entry content to always have full path

SVN revision: 59774
This commit is contained in:
Carsten Haitzler 2011-05-29 07:51:55 +00:00
parent 1e52c5a5ae
commit 5563387a24
1 changed files with 3 additions and 3 deletions

View File

@ -239,9 +239,9 @@ _e_wid_fsel_files_selection_change(void *data, Evas_Object *obj __UNUSED__, void
if (stat(wd->path, &st) == 0)
{
if (wd->preview) _e_wid_fsel_preview_file(wd);
if (!S_ISDIR(st.st_mode))
e_widget_entry_text_set(wd->o_entry, ici->file);
else
// if (!S_ISDIR(st.st_mode))
// e_widget_entry_text_set(wd->o_entry, ici->file);
// else
e_widget_entry_text_set(wd->o_entry, wd->path);
}
eina_list_free(selected);