forked from len0rd/rockbox
Fix FS#6085, recorder can use on+left/right to set A-B markers and
on+off to reset them git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11849 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
810dc68dce
commit
995a804def
1 changed files with 4 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ static const struct button_mapping button_context_wps[] = {
|
|||
{ ACTION_WPS_SEEKFWD, BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
|
||||
{ ACTION_WPS_STOPSEEK, BUTTON_LEFT|BUTTON_REL, BUTTON_LEFT|BUTTON_REPEAT },
|
||||
{ ACTION_WPS_STOPSEEK, BUTTON_RIGHT|BUTTON_REL, BUTTON_RIGHT|BUTTON_REPEAT },
|
||||
{ ACTION_WPS_STOP, BUTTON_OFF, BUTTON_NONE },
|
||||
{ ACTION_WPS_STOP, BUTTON_OFF|BUTTON_REL, BUTTON_OFF },
|
||||
{ ACTION_WPS_VOLDOWN, BUTTON_DOWN, BUTTON_NONE },
|
||||
{ ACTION_WPS_VOLDOWN, BUTTON_DOWN|BUTTON_REPEAT, BUTTON_NONE },
|
||||
{ ACTION_WPS_VOLUP, BUTTON_UP, BUTTON_NONE },
|
||||
|
|
@ -78,6 +78,9 @@ static const struct button_mapping button_context_wps[] = {
|
|||
{ ACTION_WPS_PITCHSCREEN, BUTTON_ON|BUTTON_DOWN, BUTTON_ON },
|
||||
{ ACTION_STD_KEYLOCK, BUTTON_F1|BUTTON_DOWN, BUTTON_NONE },
|
||||
{ ACTION_F3, BUTTON_F3, BUTTON_NONE },
|
||||
{ ACTION_WPS_ABSETB_NEXTDIR, BUTTON_ON|BUTTON_RIGHT, BUTTON_NONE },
|
||||
{ ACTION_WPS_ABSETA_PREVDIR, BUTTON_ON|BUTTON_LEFT, BUTTON_NONE },
|
||||
{ ACTION_WPSAB_RESET, BUTTON_ON|BUTTON_OFF, BUTTON_ON },
|
||||
|
||||
|
||||
LAST_ITEM_IN_LIST
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue