mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-08 03:37:14 +00:00
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:
committed by
Randall Luecke
parent
1642149228
commit
d9c094f644
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user