From 339b7c7d2460d1e7997c669377334e96eda895cc Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Sun, 21 Mar 2010 09:36:51 +0000 Subject: [PATCH] 3655: last modified timestamp changes everytime a tree is accessed svn: r14886 --- src/gui/dbman.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/gui/dbman.py b/src/gui/dbman.py index 8633779f3..bc1ec6cbc 100644 --- a/src/gui/dbman.py +++ b/src/gui/dbman.py @@ -255,7 +255,8 @@ class DbManager(CLIDbManager): 'edited' signal, so that we can change the name when the user changes the column. - The last modified column simply displays the last modification time. + The last accessed column simply displays the last time famtree was + opened. """ # build the database name column @@ -278,9 +279,9 @@ class DbManager(CLIDbManager): stock_id=STOCK_COL) self.dblist.append_column(icon_column) - # build the last modified column + # build the last accessed column render = gtk.CellRendererText() - column = gtk.TreeViewColumn(_('Last modified'), render, text=DATE_COL) + column = gtk.TreeViewColumn(_('Last accessed'), render, text=DATE_COL) column.set_sort_column_id(DSORT_COL) self.dblist.append_column(column)