mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 17:18:52 +00:00
Allow click+drag in playlist
This commit is contained in:
parent
867fb2dae6
commit
7b7d4e2a88
1 changed files with 4 additions and 2 deletions
|
|
@ -27,8 +27,10 @@ const TrackCell = props => {
|
|||
<div
|
||||
className={classnames({ selected, current })}
|
||||
style={style}
|
||||
onMouseDown={onMouseDown}
|
||||
onClick={clickTrack}
|
||||
onMouseDown={e => {
|
||||
onMouseDown(e);
|
||||
clickTrack(e);
|
||||
}}
|
||||
onDoubleClick={playTrack}
|
||||
onContextMenu={clickTrack}
|
||||
>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue