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.

CQTexperiment
vspader 2008-02-16 14:09:19 +00:00
parent 27cfc3d3c3
commit 53cff01123
1 changed files with 1 additions and 1 deletions

View File

@ -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];
}