diff options
author | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-07-08 20:30:07 +0200 |
---|---|---|
committer | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-07-08 20:30:07 +0200 |
commit | faffc4a53ba096d8aea3f1c729b9251ce6dba9d0 (patch) | |
tree | 7084b1ef652b344e284231d0c259526c9a4c1d12 /plugins/hotkeys | |
parent | b7a1a240765b1b87bd2c0ac05afd7c6bfe83bc37 (diff) |
fixed unpausing of currently paused track using "play" action
Diffstat (limited to 'plugins/hotkeys')
-rw-r--r-- | plugins/hotkeys/hotkeys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/hotkeys/hotkeys.c b/plugins/hotkeys/hotkeys.c index 4315602d..db270d1c 100644 --- a/plugins/hotkeys/hotkeys.c +++ b/plugins/hotkeys/hotkeys.c @@ -605,7 +605,7 @@ action_play_cb (struct DB_plugin_action_s *action, int ctx) { deadbeef->sendmessage (DB_EV_PLAY_NUM, 0, cur, 0); } else { - deadbeef->sendmessage (DB_EV_PLAY_CURRENT, 0, 1, 0); + deadbeef->sendmessage (DB_EV_PLAY_CURRENT, 0, 0, 0); } } else { |