summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2024-05-28 00:01:57 +0200
committerChristian Soffke <christian.soffke@gmail.com>2024-06-01 11:55:36 -0400
commit3d7d1d4d5b0289c6357e02be70efe2958ae55e0a (patch)
tree77da477194a3f068114d615d52e9a36f6c0c98fa /apps/plugin.c
parentef1e7d88963aa411f06448f10b3b63886c157c9c (diff)
downloadrockbox-3d7d1d4d5b0289c6357e02be70efe2958ae55e0a.tar.gz
rockbox-3d7d1d4d5b0289c6357e02be70efe2958ae55e0a.zip
plugins: properties: show track info for whole playlist
Track Info can now be displayed for the set of all tracks contained in a playlist. This lets you calculate a playlist's length, for example, even if it is not currently playing. This functionality can be accessed from the existing "Properties" screen for a selected playlist file. A line has been added at the very bottom to show Track Info. Change-Id: I311532b7cfa9e29d46c0cd5623ba4c06c1dd5b5f
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 931b8f1fd4..7934cc1754 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -838,6 +838,7 @@ static const struct plugin_api rockbox_api = {
838 playlist_get_first_index, 838 playlist_get_first_index,
839 playlist_get_display_index, 839 playlist_get_display_index,
840 filetype_get_plugin, 840 filetype_get_plugin,
841 playlist_entries_iterate,
841}; 842};
842 843
843static int plugin_buffer_handle; 844static int plugin_buffer_handle;