diff options
author | waker <wakeroid@gmail.com> | 2012-11-24 15:07:10 +0100 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2012-11-24 15:07:10 +0100 |
commit | b4fb95c1a8fc2bc7a87a98355e64ac2945b79f02 (patch) | |
tree | b99e09ceb5b5342635d5a71063f6774a24393dd3 /plugins/hotkeys | |
parent | c1c82b6fe08560ce955afbcbcc4c9d0c9a49d0e6 (diff) |
move playlist switching hotkeys out of Edit category
Diffstat (limited to 'plugins/hotkeys')
-rw-r--r-- | plugins/hotkeys/hotkeys.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/plugins/hotkeys/hotkeys.c b/plugins/hotkeys/hotkeys.c index b4cc9327..8e3adea7 100644 --- a/plugins/hotkeys/hotkeys.c +++ b/plugins/hotkeys/hotkeys.c @@ -712,7 +712,7 @@ static DB_plugin_action_t action_jump_to_current = { }; static DB_plugin_action_t action_next_playlist = { - .title = "Edit/Next playlist", + .title = "Next playlist", .name = "next_playlist", .flags = DB_ACTION_COMMON, .callback = action_next_playlist_handler, @@ -720,7 +720,7 @@ static DB_plugin_action_t action_next_playlist = { }; static DB_plugin_action_t action_prev_playlist = { - .title = "Edit/Prev playlist", + .title = "Prev playlist", .name = "prev_playlist", .flags = DB_ACTION_COMMON, .callback = action_prev_playlist_handler, @@ -728,7 +728,7 @@ static DB_plugin_action_t action_prev_playlist = { }; static DB_plugin_action_t action_playlist10 = { - .title = "Edit/Switch to playlist 10", + .title = "Switch to playlist 10", .name = "playlist10", .flags = DB_ACTION_COMMON, .callback = action_playlist10_handler, @@ -736,7 +736,7 @@ static DB_plugin_action_t action_playlist10 = { }; static DB_plugin_action_t action_playlist9 = { - .title = "Edit/Switch to playlist 9", + .title = "Switch to playlist 9", .name = "playlist9", .flags = DB_ACTION_COMMON, .callback = action_playlist9_handler, @@ -744,7 +744,7 @@ static DB_plugin_action_t action_playlist9 = { }; static DB_plugin_action_t action_playlist8 = { - .title = "Edit/Switch to playlist 8", + .title = "Switch to playlist 8", .name = "playlist8", .flags = DB_ACTION_COMMON, .callback = action_playlist8_handler, @@ -752,7 +752,7 @@ static DB_plugin_action_t action_playlist8 = { }; static DB_plugin_action_t action_playlist7 = { - .title = "Edit/Switch to playlist 7", + .title = "Switch to playlist 7", .name = "playlist7", .flags = DB_ACTION_COMMON, .callback = action_playlist7_handler, @@ -760,7 +760,7 @@ static DB_plugin_action_t action_playlist7 = { }; static DB_plugin_action_t action_playlist6 = { - .title = "Edit/Switch to playlist 6", + .title = "Switch to playlist 6", .name = "playlist6", .flags = DB_ACTION_COMMON, .callback = action_playlist6_handler, @@ -768,7 +768,7 @@ static DB_plugin_action_t action_playlist6 = { }; static DB_plugin_action_t action_playlist5 = { - .title = "Edit/Switch to playlist 5", + .title = "Switch to playlist 5", .name = "playlist5", .flags = DB_ACTION_COMMON, .callback = action_playlist5_handler, @@ -776,7 +776,7 @@ static DB_plugin_action_t action_playlist5 = { }; static DB_plugin_action_t action_playlist4 = { - .title = "Edit/Switch to playlist 4", + .title = "Switch to playlist 4", .name = "playlist4", .flags = DB_ACTION_COMMON, .callback = action_playlist4_handler, @@ -784,7 +784,7 @@ static DB_plugin_action_t action_playlist4 = { }; static DB_plugin_action_t action_playlist3 = { - .title = "Edit/Switch to playlist 3", + .title = "Switch to playlist 3", .name = "playlist3", .flags = DB_ACTION_COMMON, .callback = action_playlist3_handler, @@ -792,7 +792,7 @@ static DB_plugin_action_t action_playlist3 = { }; static DB_plugin_action_t action_playlist2 = { - .title = "Edit/Switch to playlist 2", + .title = "Switch to playlist 2", .name = "playlist2", .flags = DB_ACTION_COMMON, .callback = action_playlist2_handler, @@ -800,7 +800,7 @@ static DB_plugin_action_t action_playlist2 = { }; static DB_plugin_action_t action_playlist1 = { - .title = "Edit/Switch to playlist 1", + .title = "Switch to playlist 1", .name = "playlist1", .flags = DB_ACTION_COMMON, .callback = action_playlist1_handler, |