summaryrefslogtreecommitdiff
path: root/apps/plugins/pictureflow/pictureflow.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/pictureflow/pictureflow.c')
-rw-r--r--apps/plugins/pictureflow/pictureflow.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/apps/plugins/pictureflow/pictureflow.c b/apps/plugins/pictureflow/pictureflow.c
index 9896ca45bf..75504cf17e 100644
--- a/apps/plugins/pictureflow/pictureflow.c
+++ b/apps/plugins/pictureflow/pictureflow.c
@@ -3657,11 +3657,9 @@ enum {
3657 PF_GOTO_LAST_ALBUM, 3657 PF_GOTO_LAST_ALBUM,
3658 PF_GOTO_WPS, 3658 PF_GOTO_WPS,
3659#if PF_PLAYBACK_CAPABLE 3659#if PF_PLAYBACK_CAPABLE
3660 PF_MENU_CLEAR_PLAYLIST,
3661 PF_MENU_PLAYBACK_CONTROL, 3660 PF_MENU_PLAYBACK_CONTROL,
3662#endif 3661#endif
3663 PF_MENU_SETTINGS, 3662 PF_MENU_SETTINGS,
3664 PF_MENU_RETURN,
3665 PF_MENU_QUIT, 3663 PF_MENU_QUIT,
3666}; 3664};
3667 3665
@@ -3679,11 +3677,9 @@ static int main_menu(void)
3679 ID2P(LANG_GOTO_LAST_ALBUM), 3677 ID2P(LANG_GOTO_LAST_ALBUM),
3680 ID2P(LANG_GOTO_WPS), 3678 ID2P(LANG_GOTO_WPS),
3681#if PF_PLAYBACK_CAPABLE 3679#if PF_PLAYBACK_CAPABLE
3682 ID2P(LANG_CLEAR_PLAYLIST),
3683 ID2P(LANG_PLAYBACK_CONTROL), 3680 ID2P(LANG_PLAYBACK_CONTROL),
3684#endif 3681#endif
3685 ID2P(LANG_SETTINGS), 3682 ID2P(LANG_SETTINGS),
3686 ID2P(LANG_RETURN),
3687 ID2P(LANG_MENU_QUIT)); 3683 ID2P(LANG_MENU_QUIT));
3688 while (1) { 3684 while (1) {
3689 switch (rb->do_menu(&main_menu,&selection, NULL, false)) { 3685 switch (rb->do_menu(&main_menu,&selection, NULL, false)) {
@@ -3718,12 +3714,6 @@ static int main_menu(void)
3718 case PF_GOTO_WPS: /* WPS */ 3714 case PF_GOTO_WPS: /* WPS */
3719 return -2; 3715 return -2;
3720#if PF_PLAYBACK_CAPABLE 3716#if PF_PLAYBACK_CAPABLE
3721 case PF_MENU_CLEAR_PLAYLIST:
3722 if(rb->warn_on_pl_erase() && rb->playlist_remove_all_tracks(NULL) == 0) {
3723 rb->playlist_create(NULL, NULL);
3724 rb->splash(HZ*2, ID2P(LANG_PLAYLIST_CLEARED));
3725 }
3726 break;
3727 case PF_MENU_PLAYBACK_CONTROL: /* Playback Control */ 3717 case PF_MENU_PLAYBACK_CONTROL: /* Playback Control */
3728 playback_control(NULL); 3718 playback_control(NULL);
3729 break; 3719 break;
@@ -3732,8 +3722,6 @@ static int main_menu(void)
3732 result = settings_menu(); 3722 result = settings_menu();
3733 if ( result != 0 ) return result; 3723 if ( result != 0 ) return result;
3734 break; 3724 break;
3735 case PF_MENU_RETURN:
3736 return 0;
3737 case PF_MENU_QUIT: 3725 case PF_MENU_QUIT:
3738 return -1; 3726 return -1;
3739 3727