comparison src/view_file_icon.c @ 964:ba1d3c4bc0cd

implemented marks filter
author nadvornik
date Sat, 16 Aug 2008 20:34:14 +0000
parents 1698baa37871
children c24a297efbef
comparison
equal deleted inserted replaced
963:323dab9321bb 964:ba1d3c4bc0cd
2105 focus_id = VFICON_INFO(vf, focus_id); 2105 focus_id = VFICON_INFO(vf, focus_id);
2106 2106
2107 if (vf->dir_fd) 2107 if (vf->dir_fd)
2108 { 2108 {
2109 ret = filelist_read(vf->dir_fd, &new_filelist, NULL); 2109 ret = filelist_read(vf->dir_fd, &new_filelist, NULL);
2110 new_filelist = file_data_filter_marks_list(new_filelist, vf_marks_get_filter(vf));
2110 } 2111 }
2111 2112
2112 vf->list = iconlist_sort(vf->list, vf->sort_method, vf->sort_ascend); /* the list might not be sorted if there were renames */ 2113 vf->list = iconlist_sort(vf->list, vf->sort_method, vf->sort_ascend); /* the list might not be sorted if there were renames */
2113 new_filelist = filelist_sort(new_filelist, vf->sort_method, vf->sort_ascend); 2114 new_filelist = filelist_sort(new_filelist, vf->sort_method, vf->sort_ascend);
2114 2115