summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-11-01 13:41:16 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-11-01 13:41:16 +0000
commit9e23e9d43e6345bd3f8caa2176c1084251160a28 (patch)
tree39feb27519f4ef0d1a02ed315c21836a6d6a7cbe
parent155f928c8d0fbea514fd7c845ead511e084987ec (diff)
downloadrockbox-9e23e9d43e6345bd3f8caa2176c1084251160a28.tar.gz
rockbox-9e23e9d43e6345bd3f8caa2176c1084251160a28.zip
Fix FS#7826 - make the view catalog option in the main menu > playlists menu use the same text as the view catalog option in the onplay menus
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15392 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/menus/playlist_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menus/playlist_menu.c b/apps/menus/playlist_menu.c
index d66a71caba..60ebc69541 100644
--- a/apps/menus/playlist_menu.c
+++ b/apps/menus/playlist_menu.c
@@ -69,7 +69,7 @@ MENUITEM_FUNCTION(view_playlist, 0, ID2P(LANG_VIEW_DYNAMIC_PLAYLIST),
69MENUITEM_FUNCTION(save_playlist, MENU_FUNC_USEPARAM, ID2P(LANG_SAVE_DYNAMIC_PLAYLIST), 69MENUITEM_FUNCTION(save_playlist, MENU_FUNC_USEPARAM, ID2P(LANG_SAVE_DYNAMIC_PLAYLIST),
70 (int(*)(void*))save_playlist_screen, 70 (int(*)(void*))save_playlist_screen,
71 NULL, NULL, Icon_NOICON); 71 NULL, NULL, Icon_NOICON);
72MENUITEM_FUNCTION(catalog, 0, ID2P(LANG_CATALOG), 72MENUITEM_FUNCTION(catalog, 0, ID2P(LANG_CATALOG_VIEW),
73 (int(*)(void))catalog_view_playlists, 73 (int(*)(void))catalog_view_playlists,
74 NULL, NULL, Icon_NOICON); 74 NULL, NULL, Icon_NOICON);
75MENUITEM_SETTING(recursive_dir_insert, &global_settings.recursive_dir_insert, NULL); 75MENUITEM_SETTING(recursive_dir_insert, &global_settings.recursive_dir_insert, NULL);