Index: apps/plugins/pictureflow.c =================================================================== --- apps/plugins/pictureflow.c (Revision 18351) +++ apps/plugins/pictureflow.c (Arbeitskopie) @@ -63,7 +63,11 @@ #define PICTUREFLOW_PREV_ALBUM_REPEAT PLA_LEFT_REPEAT #define PICTUREFLOW_NEXT_TRACK PLA_DOWN #define PICTUREFLOW_NEXT_TRACK_REPEAT PLA_DOWN_REPEAT +#if (CONFIG_KEYPAD == SANSA_C200_PAD) +#define PICTUREFLOW_PREV_TRACK PLA_START +#else #define PICTUREFLOW_PREV_TRACK PLA_UP +#endif #define PICTUREFLOW_PREV_TRACK_REPEAT PLA_UP_REPEAT #endif #define PICTUREFLOW_MENU PLA_MENU @@ -2049,6 +2053,12 @@ return PLUGIN_OK; case PICTUREFLOW_MENU: +#if (CONFIG_KEYPAD == SANSA_C200_PAD) + if ( pf_state == pf_show_tracks ) { + select_next_track(); + break; + } +#endif if ( pf_state == pf_idle || pf_state == pf_scrolling ) { ret = main_menu(); if ( ret == -1 ) return PLUGIN_OK;