diff --git a/Playlist/PlaylistView.m b/Playlist/PlaylistView.m index e221e7508..931a80d7c 100644 --- a/Playlist/PlaylistView.m +++ b/Playlist/PlaylistView.m @@ -79,14 +79,12 @@ - (void)mouseDown:(NSEvent *)e { - NSLog(@"MOUSE DOWN"); - if ([e type] == NSLeftMouseDown && [e clickCount] == 2) + if ([e type] == NSLeftMouseDown && [e clickCount] == 2 && [self selectedRow] != -1) { [playbackController play:self]; } else { - NSLog(@"Super"); [super mouseDown:e]; } }