summaryrefslogtreecommitdiff
path: root/apps/plugins/properties.c
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2023-01-06 05:37:26 +0100
committerChristian Soffke <christian.soffke@gmail.com>2023-01-06 19:00:24 +0100
commitb444ecfca2218068233a89c278cc86b9e9ef67d7 (patch)
treeb23a87b42e30cb73d31489420135ddd1611b862f /apps/plugins/properties.c
parent5750eb3181de4923a8d3141066f4631df3b7d70c (diff)
downloadrockbox-b444ecfca2218068233a89c278cc86b9e9ef67d7.tar.gz
rockbox-b444ecfca2218068233a89c278cc86b9e9ef67d7.zip
plugins: Properties: Add 'Last Modified' for audio files
In commit f3358eb, the Properties plugin started using the Track Info screen for audio files, which didn't show when the file was last modified. This adds it back. Change-Id: I3ce519da234a4bcadab1d64b67de0298cada8f6e
Diffstat (limited to 'apps/plugins/properties.c')
-rw-r--r--apps/plugins/properties.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c
index 73ad841c0c..46cf818fb4 100644
--- a/apps/plugins/properties.c
+++ b/apps/plugins/properties.c
@@ -412,7 +412,7 @@ enum plugin_status plugin_start(const void* parameter)
412 FOR_NB_SCREENS(i) 412 FOR_NB_SCREENS(i)
413 rb->viewportmanager_theme_enable(i, true, NULL); 413 rb->viewportmanager_theme_enable(i, true, NULL);
414 414
415 bool usb = props_type == PROPS_ID3 ? rb->browse_id3(&id3, 0, 0) : 415 bool usb = props_type == PROPS_ID3 ? rb->browse_id3(&id3, 0, 0, &tm) :
416 browse_file_or_dir(&stats); 416 browse_file_or_dir(&stats);
417 417
418 FOR_NB_SCREENS(i) 418 FOR_NB_SCREENS(i)