ubuntu-touch-coreapps-reviewers team mailing list archive
-
ubuntu-touch-coreapps-reviewers team
-
Mailing list archive
-
Message #03618
[Merge] lp:~carlos-mazieri/ubuntu-filemanager-app/bug-1473669-dates-property into lp:ubuntu-filemanager-app
Carlos Jose Mazieri has proposed merging lp:~carlos-mazieri/ubuntu-filemanager-app/bug-1473669-dates-property into lp:ubuntu-filemanager-app.
Commit message:
Fixes the bug #1473669, it shows correct item dates property
Requested reviews:
Ubuntu File Manager Developers (ubuntu-filemanager-dev)
For more details, see:
https://code.launchpad.net/~carlos-mazieri/ubuntu-filemanager-app/bug-1473669-dates-property/+merge/265041
Fixes the bug #1473669, it shows correct item dates property
--
Your team Ubuntu File Manager Developers is requested to review the proposed merge of lp:~carlos-mazieri/ubuntu-filemanager-app/bug-1473669-dates-property into lp:ubuntu-filemanager-app.
=== modified file 'src/app/qml/ui/FileDetailsPopover.qml'
--- src/app/qml/ui/FileDetailsPopover.qml 2014-09-20 10:49:51 +0000
+++ src/app/qml/ui/FileDetailsPopover.qml 2015-07-16 20:20:53 +0000
@@ -113,7 +113,7 @@
color: Theme.palette.normal.overlayText
}
Label {
- text: dateTimeFormat(pathAccessedDate())
+ text: dateTimeFormat(model.accessedDate)
color: Theme.palette.normal.overlayText
}
@@ -122,7 +122,7 @@
color: Theme.palette.normal.overlayText
}
Label {
- text: dateTimeFormat(pathModifiedDate())
+ text: dateTimeFormat(model.modifiedDate)
color: Theme.palette.normal.overlayText
}
Follow ups