From d9c094f64441bc01d6822be1da06ff6f8db5e522 Mon Sep 17 00:00:00 2001 From: klaaspieter Date: Mon, 31 May 2010 19:14:54 -0500 Subject: [PATCH] call tableview doubleclick action even if target is nil (action will travel down the responder chain) Conflicts: AppKit/CPTableView.j --- AppKit/CPTableView.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPTableView.j b/AppKit/CPTableView.j index c6651ae87..c8bac1aae 100644 --- a/AppKit/CPTableView.j +++ b/AppKit/CPTableView.j @@ -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];