summaryrefslogtreecommitdiff
path: root/src/nautilus-list-view.c
diff options
context:
space:
mode:
authorRahul Verma <rv404674@gmail.com>2018-03-07 00:02:05 +0530
committerRahul Verma <rv404674@gmail.com>2018-03-12 22:22:32 +0530
commite1b3258fc172ad35655924f99cc569dc4ced37b5 (patch)
tree56757697cc3ad49ee3d7ec2570e8a356cc063793 /src/nautilus-list-view.c
parenta2f01b382551bb59f772d7b4d4415f34157f4546 (diff)
downloadnautilus-e1b3258fc172ad35655924f99cc569dc4ced37b5.tar.gz
list-view: show recency column in Recent places
For Recent on List view, there is no way to find files by "how recently" they were used just by looking at the list. The fix for this is to replace "Size" column with "Recency" column. Closes #88
Diffstat (limited to 'src/nautilus-list-view.c')
-rw-r--r--src/nautilus-list-view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nautilus-list-view.c b/src/nautilus-list-view.c
index d2ba388e8..8dc0a0988 100644
--- a/src/nautilus-list-view.c
+++ b/src/nautilus-list-view.c
@@ -110,12 +110,12 @@ static const char *default_search_columns_order[] =
static const char *default_recent_visible_columns[] =
{
- "name", "size", "where", NULL
+ "name", "where", "recency", NULL
};
static const char *default_recent_columns_order[] =
{
- "name", "size", "where", NULL
+ "name", "where", "recency", NULL
};
static const char *default_trash_visible_columns[] =