summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2021-12-28 08:56:16 +0100
committerAidan MacDonald <amachronic@protonmail.com>2021-12-28 11:15:57 -0500
commit7dffbd84af8d4857f357ac33bd74fda3608c7ebd (patch)
treecef86518c43e92fb74658356bad1919ee868acbc /apps/gui
parente8b912320561c1178d45eb12cf753be62e40ee73 (diff)
downloadrockbox-7dffbd84af8d4857f357ac33bd74fda3608c7ebd.tar.gz
rockbox-7dffbd84af8d4857f357ac33bd74fda3608c7ebd.zip
Playlist Viewer: Add Track Info
Adds a command for showing track info to the Playlist Viewer's context menu, which brings up the same screen used by the WPS for currently playing tracks. Change-Id: I17d99671935934dad565d290a0d6fb3b0dfd8b01
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/wps.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index cdb34ab447..7554892451 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -903,7 +903,9 @@ long gui_wps_show(void)
903 case ACTION_WPS_ID3SCREEN: 903 case ACTION_WPS_ID3SCREEN:
904 { 904 {
905 gwps_leave_wps(); 905 gwps_leave_wps();
906 if (browse_id3()) 906 if (browse_id3(audio_current_track(),
907 playlist_get_display_index(),
908 playlist_amount()))
907 return GO_TO_ROOT; 909 return GO_TO_ROOT;
908 restore = true; 910 restore = true;
909 } 911 }