Attempted fix of double-click drag allowing selection without playing. It causes a few issues. Mainly you need to have only one row selected for double-click play to work. We'll see how it works.
parent
27cfc3d3c3
commit
53cff01123
|
@ -130,7 +130,7 @@
|
|||
{
|
||||
[super mouseDown:e];
|
||||
|
||||
if ([e type] == NSLeftMouseDown && [e clickCount] == 2 && [self selectedRow] != -1)
|
||||
if ([e type] == NSLeftMouseDown && [e clickCount] == 2 && [[self selectedRowIndexes] count] == 1)
|
||||
{
|
||||
[playbackController play:self];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue