properly display ModificationTimestamp in listview

This commit is contained in:
Michael Becker 2019-11-15 12:09:49 -05:00
parent 027840d75f
commit db78228129
No known key found for this signature in database
GPG Key ID: 389DFF5D73781A12

View File

@ -288,7 +288,7 @@ namespace UniversalEditor.Editors.FileSystem
new TreeModelRowColumn(tmTreeView.Columns[0], f.Name),
new TreeModelRowColumn(tmTreeView.Columns[1], UserInterface.Common.FileInfo.FormatSize(f.Size)),
new TreeModelRowColumn(tmTreeView.Columns[2], "File"),
new TreeModelRowColumn(tmTreeView.Columns[3], DateTime.Now.ToString())
new TreeModelRowColumn(tmTreeView.Columns[3], f.ModificationTimestamp.ToString())
});
}
r.SetExtraData<IFileSystemObject>("item", fso);