diff options
author | Christian Soffke <christian.soffke@gmail.com> | 2022-04-07 22:04:16 +0200 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2022-04-18 22:28:13 -0400 |
commit | 1c3f6e063a1e8444873b02463db2a055950ff3c4 (patch) | |
tree | 8d21f5e4280a5ca650e66ccd5e48e65d8199bb67 | |
parent | f8d54d0d1e8ae891d9da9cf787aa0dd045cc193b (diff) | |
download | rockbox-1c3f6e063a.tar.gz rockbox-1c3f6e063a.zip |
fiiom3k Yes/No screen: Only accept Play button for YES
According to the on screen instructions, any other button
should mean No.
More importantly, in my experience at least, the Select
"button", since it is touch-activated, can sometimes be
pressed by accident, especially when a warning screen
is displayed as a result of pressing that same button.
Change-Id: Ieeadfa8018b5df99605297bc47948a181c22dab4
-rw-r--r-- | apps/keymaps/keymap-fiiom3k.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/keymaps/keymap-fiiom3k.c b/apps/keymaps/keymap-fiiom3k.c index 337a2184cd..d0fbbb2e98 100644 --- a/apps/keymaps/keymap-fiiom3k.c +++ b/apps/keymaps/keymap-fiiom3k.c @@ -203,7 +203,7 @@ static const struct button_mapping button_context_pitchscreen[] = { static const struct button_mapping button_context_yesnoscreen[] = { {ACTION_YESNO_ACCEPT, BUTTON_PLAY, BUTTON_NONE}, - {ACTION_YESNO_ACCEPT, BUTTON_SELECT, BUTTON_NONE}, + {ACTION_STD_CANCEL, BUTTON_SELECT, BUTTON_NONE}, {ACTION_STD_CANCEL, BUTTON_BACK, BUTTON_NONE}, {ACTION_STD_CANCEL, BUTTON_POWER, BUTTON_NONE}, {ACTION_STD_CANCEL, BUTTON_RIGHT, BUTTON_NONE}, |