Merge lp:~carlos-mazieri/ubuntu-filemanager-app/bug-1473669-dates-property into lp:ubuntu-filemanager-app

Proposed by Carlos Jose Mazieri
Status: Merged
Approved by: Arto Jalkanen
Approved revision: 431
Merged at revision: 450
Proposed branch: lp:~carlos-mazieri/ubuntu-filemanager-app/bug-1473669-dates-property
Merge into: lp:ubuntu-filemanager-app
Diff against target: 20 lines (+2/-2)
1 file modified
src/app/qml/ui/FileDetailsPopover.qml (+2/-2)
To merge this branch: bzr merge lp:~carlos-mazieri/ubuntu-filemanager-app/bug-1473669-dates-property
Reviewer Review Type Date Requested Status
Arto Jalkanen Approve
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Review via email: mp+265041@code.launchpad.net

Commit message

Fixes the bug #1473669, it shows correct item dates property

Description of the change

Fixes the bug #1473669, it shows correct item dates property

To post a comment you must log in.
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Arto Jalkanen (ajalkane) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== 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 @@
113 color: Theme.palette.normal.overlayText113 color: Theme.palette.normal.overlayText
114 }114 }
115 Label {115 Label {
116 text: dateTimeFormat(pathAccessedDate())116 text: dateTimeFormat(model.accessedDate)
117 color: Theme.palette.normal.overlayText117 color: Theme.palette.normal.overlayText
118 }118 }
119119
@@ -122,7 +122,7 @@
122 color: Theme.palette.normal.overlayText122 color: Theme.palette.normal.overlayText
123 }123 }
124 Label {124 Label {
125 text: dateTimeFormat(pathModifiedDate())125 text: dateTimeFormat(model.modifiedDate)
126 color: Theme.palette.normal.overlayText126 color: Theme.palette.normal.overlayText
127 }127 }
128128

Subscribers

People subscribed via source and target branches