From 1f2c4400abaef670c23004591500f2d7031dc5ce Mon Sep 17 00:00:00 2001 From: Mirko Viviani Date: Mon, 23 Apr 2001 21:06:43 +0000 Subject: [PATCH] * Source/NSMatrix.m ([NSMatrix -_mouseDownNonListMode:]): does not performSelector is the mouse goes up in cell. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@9677 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ Source/NSMatrix.m | 7 ------- 2 files changed, 5 insertions(+), 7 deletions(-) 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]; - } }