summaryrefslogtreecommitdiff
path: root/apps/keymaps/keymap-recorder.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/keymaps/keymap-recorder.c')
-rw-r--r--apps/keymaps/keymap-recorder.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/apps/keymaps/keymap-recorder.c b/apps/keymaps/keymap-recorder.c
index 4fb278db6e..1470b33965 100644
--- a/apps/keymaps/keymap-recorder.c
+++ b/apps/keymaps/keymap-recorder.c
@@ -184,6 +184,14 @@ const struct button_mapping button_context_keyboard[] = {
184 LAST_ITEM_IN_LIST 184 LAST_ITEM_IN_LIST
185}; /* button_context_keyboard */ 185}; /* button_context_keyboard */
186 186
187struct button_mapping button_context_bmark[] = {
188 { ACTION_BMS_DELETE, BUTTON_PLAY|BUTTON_ON, BUTTON_PLAY },
189 { ACTION_BMS_DELETE, BUTTON_PLAY|BUTTON_ON, BUTTON_ON },
190 { ACTION_BMS_EXIT, BUTTON_PLAY|BUTTON_REPEAT, BUTTON_NONE },
191 { ACTION_BMS_SELECT, BUTTON_PLAY|BUTTON_REL, BUTTON_PLAY },
192
193 LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD),
194}; /* button_context_settings_bmark */
187/***************************************************************************** 195/*****************************************************************************
188 * Remote control mappings 196 * Remote control mappings
189 *****************************************************************************/ 197 *****************************************************************************/
@@ -242,7 +250,8 @@ const struct button_mapping* get_context_mapping( int context )
242 250
243 case CONTEXT_PITCHSCREEN: 251 case CONTEXT_PITCHSCREEN:
244 return button_context_pitchscreen; 252 return button_context_pitchscreen;
245 253 case CONTEXT_BOOKMARKSCREEN:
254 return button_context_bmark;
246 case CONTEXT_TREE: 255 case CONTEXT_TREE:
247 if (global_settings.hold_lr_for_scroll_in_list) 256 if (global_settings.hold_lr_for_scroll_in_list)
248 return button_context_tree_scroll_lr; 257 return button_context_tree_scroll_lr;