1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Christian Soffke 2023-01-06 05:37:26 +01:00
parent 5750eb3181
commit b444ecfca2
7 changed files with 39 additions and 9 deletions

View file

@ -412,7 +412,7 @@ enum plugin_status plugin_start(const void* parameter)
FOR_NB_SCREENS(i)
rb->viewportmanager_theme_enable(i, true, NULL);
bool usb = props_type == PROPS_ID3 ? rb->browse_id3(&id3, 0, 0) :
bool usb = props_type == PROPS_ID3 ? rb->browse_id3(&id3, 0, 0, &tm) :
browse_file_or_dir(&stats);
FOR_NB_SCREENS(i)