This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#10333 - iAudio M3 "SELECT" and "DONE" not working on remote in keyboard context.
Attached to Project:
Rockbox
Opened by Richard Corden (RichardC) - Sunday, 14 June 2009, 23:50 GMT+2
Opened by Richard Corden (RichardC) - Sunday, 14 June 2009, 23:50 GMT+2
|
DetailsWhen adding text via the keyboard, neither the selection function nor the done function work using the remote play button. Pressing 'play' on the main unit however, does work and has the correct behaviour. I checked the keymap-m3.c source and I noticed that unlike the other entires, the last entry for these options refers to the main unit buttons and not the remote: { ACTION_KBD_SELECT, BUTTON_RC_PLAY|BUTTON_REL, BUTTON_PLAY }, { ACTION_KBD_DONE, BUTTON_RC_PLAY|BUTTON_REPEAT, BUTTON_PLAY }, I changed the entries to the following: { ACTION_KBD_SELECT, BUTTON_RC_PLAY|BUTTON_REL, BUTTON_RC_PLAY }, { ACTION_KBD_DONE, BUTTON_RC_PLAY|BUTTON_REPEAT, BUTTON_RC_PLAY }, After rebuilding and installing this change onto my M3 the keybord now works when using the remote. Attached is the patch file for this change. |
This task depends upon