diff --git a/Makefile.am b/Makefile.am index 3b81f032..2140fb31 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,15 +4,18 @@ SUBDIRS = \ EXTRA_DIST= \ autogen.sh \ + rak/address_info.h \ rak/algorithm.h \ rak/error_number.h \ rak/file_stat.h \ rak/functional.h \ rak/functional_fun.h \ rak/path.h \ + rak/partial_queue.h \ rak/priority_queue.h \ rak/priority_queue_default.h \ rak/regex.h \ + rak/socket_address.h \ rak/string_manip.h \ rak/timer.h \ rak/unordered_vector.h \ diff --git a/src/display/window_file_list.cc b/src/display/window_file_list.cc index dd50470d..1cb17eb3 100644 --- a/src/display/window_file_list.cc +++ b/src/display/window_file_list.cc @@ -135,9 +135,11 @@ WindowFileList::redraw() { done_percentage(e), e.path()->encoding().c_str()); - m_canvas->print(84, pos, "%i - %i", + m_canvas->print(84, pos, "%i - %i %c%c", e.chunk_begin(), - e.chunk_begin() != e.chunk_end() ? (e.chunk_end() - 1) : e.chunk_end()); + e.chunk_begin() != e.chunk_end() ? (e.chunk_end() - 1) : e.chunk_end(), + e.is_created() ? 'E' : 'M', + e.is_correct_size() ? 'C' : 'W'); ++range.first; ++pos;