summaryrefslogtreecommitdiff
path: root/plugins/hotkeys
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-07-31 15:01:56 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-07-31 15:01:56 +0200
commitbbe6cfdd9da8d03946c36e6ca287a6c0af9e0268 (patch)
tree356037d077e69c52f4b01211d56f405e887fead1 /plugins/hotkeys
parentb81f1e28ce52187df2a8d29abc9d6e81981b042b (diff)
allow forward slash in plugin action titles via \/
Diffstat (limited to 'plugins/hotkeys')
-rw-r--r--plugins/hotkeys/hotkeys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/hotkeys/hotkeys.c b/plugins/hotkeys/hotkeys.c
index c61bbc8b..feba4efe 100644
--- a/plugins/hotkeys/hotkeys.c
+++ b/plugins/hotkeys/hotkeys.c
@@ -628,7 +628,7 @@ static DB_plugin_action_t action_toggle_pause = {
};
static DB_plugin_action_t action_play_pause = {
- .title = "Play/Pause",
+ .title = "Play\\/Pause",
.name = "play_pause",
.flags = DB_ACTION_COMMON,
.callback = action_play_pause_cb,