summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/settings_list.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 86ad12f96f..d52a82f8cc 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -1664,10 +1664,24 @@ const struct settings_list settings[] = {
1664#ifdef HAVE_HOTKEY 1664#ifdef HAVE_HOTKEY
1665 CHOICE_SETTING(0, hotkey_wps, -1, 1, "hotkey wps", 1665 CHOICE_SETTING(0, hotkey_wps, -1, 1, "hotkey wps",
1666 "off,view playlist,show track info,pitchscreen,open with,delete,insert", 1666 "off,view playlist,show track info,pitchscreen,open with,delete,insert",
1667 NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL), 1667 NULL, 7, ID2P(LANG_OFF),
1668 ID2P(LANG_VIEW_DYNAMIC_PLAYLIST), ID2P(LANG_MENU_SHOW_ID3_INFO),
1669#ifdef HAVE_PITCHSCREEN
1670 ID2P(LANG_PITCH),
1671#else
1672 NULL,
1673#endif
1674 ID2P(LANG_ONPLAY_OPEN_WITH), ID2P(LANG_DELETE), ID2P(LANG_INSERT)),
1668 CHOICE_SETTING(0, hotkey_tree, -1, 0, "hotkey tree", 1675 CHOICE_SETTING(0, hotkey_tree, -1, 0, "hotkey tree",
1669 "off,view playlist,show track info,pitchscreen,open with,delete,insert", 1676 "off,view playlist,show track info,pitchscreen,open with,delete,insert",
1670 NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL), 1677 NULL, 7, ID2P(LANG_OFF),
1678 ID2P(LANG_VIEW_DYNAMIC_PLAYLIST), ID2P(LANG_MENU_SHOW_ID3_INFO),
1679#ifdef HAVE_PITCHSCREEN
1680 ID2P(LANG_PITCH),
1681#else
1682 NULL,
1683#endif
1684 ID2P(LANG_ONPLAY_OPEN_WITH), ID2P(LANG_DELETE), ID2P(LANG_INSERT)),
1671#endif 1685#endif
1672}; 1686};
1673 1687