diff --git a/ChangeLog b/ChangeLog index dc247628a..fe671d097 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-04-23 Mirko Viviani + + * Source/NSMatrix.m ([NSMatrix -_mouseDownNonListMode:]): does not + performSelector is the mouse goes up in cell. + 2001-04-22 Georg Fleischmann * gui/Source/GSTextStorage.m: diff --git a/Source/NSMatrix.m b/Source/NSMatrix.m index 041c1c47a..6fa357df1 100644 --- a/Source/NSMatrix.m +++ b/Source/NSMatrix.m @@ -2092,13 +2092,6 @@ static SEL getSel; } [self sendAction]; } - else if (_selectedCell != nil && ([_selectedCell target] == nil)) - { - // selected cell has no target so send single - // click action to matrix's (self's) target - if (_target) - [_target performSelector: _action withObject: self]; - } }