diff --git a/data/themes/images/e17_icon_fileman_folder.png b/data/themes/images/e17_icon_fileman_folder.png index 73160c606..64d908ba4 100644 Binary files a/data/themes/images/e17_icon_fileman_folder.png and b/data/themes/images/e17_icon_fileman_folder.png differ diff --git a/data/themes/images/e17_icon_fileman_folder_clicked.png b/data/themes/images/e17_icon_fileman_folder_clicked.png index 6f9fb0db8..9df0381a7 100644 Binary files a/data/themes/images/e17_icon_fileman_folder_clicked.png and b/data/themes/images/e17_icon_fileman_folder_clicked.png differ diff --git a/src/bin/e_fileman_smart.c b/src/bin/e_fileman_smart.c index a8b57ffcd..f8b23eb14 100644 --- a/src/bin/e_fileman_smart.c +++ b/src/bin/e_fileman_smart.c @@ -74,7 +74,7 @@ struct _E_Fileman_File_Attributes dev_t rdev; /* device ID (if special file) */ off_t size; /* total size, in bytes */ //blksize_t blksize; /* blocksize for filesystem I/O */ - blkcnt_t blocks; /* number of blocks allocated */ + //blkcnt_t blocks; /* number of blocks allocated */ time_t atime; /* time of last access */ time_t mtime; /* time of last modification */ time_t ctime; /* time of last status change */ @@ -1240,8 +1240,9 @@ _e_fm_stat_to_attr(struct stat st, E_Fileman_File_Attributes *attr, char *name) attr->group = st.st_gid; attr->rdev = st.st_rdev; attr->size = st.st_size; + // check portability of the following 2 fields //attr->st_blksize = st.st_blksize; - attr->blocks = st.st_blocks; + //attr->blocks = st.st_blocks; attr->atime = st.st_atime; attr->mtime = st.st_mtime; attr->ctime = st.st_ctime;