call tableview doubleclick action even if target is nil (action will travel down the responder chain)

Conflicts:

	AppKit/CPTableView.j
This commit is contained in:
klaaspieter
2010-05-31 19:14:54 -05:00
committed by Randall Luecke
parent 1642149228
commit d9c094f644
+1 -1
View File
@@ -2972,7 +2972,7 @@ CPTableViewFirstColumnOnlyAutoresizingStyle = 5;
} //end of editing conditional
//double click actions
if([[CPApp currentEvent] clickCount] === 2 && _doubleAction && _target)
if([[CPApp currentEvent] clickCount] === 2 && _doubleAction)
{
_clickedRow = [self rowAtPoint:aPoint];
[self sendAction:_doubleAction to:_target];