From a32d228981ada7eef1cd69bed3882a9edb3ef2b9 Mon Sep 17 00:00:00 2001 From: nico Date: Tue, 24 Sep 2002 14:37:54 +0000 Subject: [PATCH] Fixed textfield first responder code so that when you make a textfield the first responder, its text is automatically selected git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14540 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ChangeLog b/ChangeLog index 994560e11..72ea29120 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +Tue Sep 24 16:32:30 2002 Nicola Pero + + After discussions with David Ayers: + * Source/NSCell.m ([-editWithFrame:inView:editor:delegate:event:]): + Do not perform an immediate display of the textfield. + ([-selectWithFrame:inView:editor:delegate:start:length:]): Idem. + * Source/NSTextField.m ([-becomeFirstResponder]): If the text + field accepts first responder status, select its text. + ([-mouseDown:]): If not selectable, pass the mouse down to super. + If selectable, and _text_object is not nil, pass the mouse down to + the _text_object. Else, try to get first responder status, and + to start editing. + Tue Sep 24 03:29:55 2002 Nicola Pero * Source/NSSplitView.m: Cache the default notification center for