mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-27 12:03:52 +00:00
Fix seek n tracks forward/back
This commit is contained in:
parent
7c52b52ea7
commit
7d9ef4287f
1 changed files with 12 additions and 3 deletions
|
|
@ -37,8 +37,16 @@ const PlaybackContextMenu = props => (
|
|||
{/*
|
||||
<Node label="Start of list" hotkey="Ctrl+Z" />
|
||||
*/}
|
||||
<Node label="10 tracks back" hotkey="Num. 1" onClick={() => nextN(-10)} />
|
||||
<Node label="10 tracks fwd" hotkey="Num. 3" onClick={() => nextN(10)} />
|
||||
<Node
|
||||
label="10 tracks back"
|
||||
hotkey="Num. 1"
|
||||
onClick={() => props.nextN(-10)}
|
||||
/>
|
||||
<Node
|
||||
label="10 tracks fwd"
|
||||
hotkey="Num. 3"
|
||||
onClick={() => props.nextN(10)}
|
||||
/>
|
||||
{/*
|
||||
<Hr />
|
||||
<Node label="Jump to time" hotkey="Ctrl+J" />
|
||||
|
|
@ -54,7 +62,8 @@ const mapDispatchToProps = {
|
|||
stop,
|
||||
next,
|
||||
seekForward,
|
||||
seekBackward
|
||||
seekBackward,
|
||||
nextN
|
||||
};
|
||||
|
||||
export default connect(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue