From: Tay R. C. <rc...@us...> - 2005-07-08 07:46:54
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7181/actionstep/org/actionstep Modified Files: NSTextField.as Log Message: textShouldBeginEditing checks isSelectable() before returning false Index: NSTextField.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSTextField.as,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** NSTextField.as 1 Jun 2005 03:32:41 -0000 1.8 --- NSTextField.as 8 Jul 2005 07:46:46 -0000 1.9 *************** *** 230,234 **** public function textShouldBeginEditing(editor):Boolean { ! if (!isEditable()) { return false; } --- 230,234 ---- public function textShouldBeginEditing(editor):Boolean { ! if (!(isEditable() || isSelectable())) { return false; } |