mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 23:31:02 +00:00
Honor sendsActionOnEndEditing setting when editing ended by something other than return
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@30196 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0d365b7d10
commit
aa0ce37f5d
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-04-19 Doug Simons <doug.simons@testplant.com>
|
||||
|
||||
* Source/NSMatrix.m:
|
||||
Honor sendsActionOnEndEditing setting when editing ended by
|
||||
something other than return.
|
||||
|
||||
2010-04-18 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* Source/NSBrowser.m:
|
||||
|
|
|
@ -1773,6 +1773,9 @@ static SEL getSel;
|
|||
}
|
||||
break;
|
||||
case NSTabTextMovement:
|
||||
if ([_selectedCell sendsActionOnEndEditing])
|
||||
[self sendAction];
|
||||
|
||||
if (_tabKeyTraversesCells)
|
||||
{
|
||||
if ([self _selectNextSelectableCellAfterRow: _selectedRow
|
||||
|
@ -1793,6 +1796,9 @@ static SEL getSel;
|
|||
}
|
||||
break;
|
||||
case NSBacktabTextMovement:
|
||||
if ([_selectedCell sendsActionOnEndEditing])
|
||||
[self sendAction];
|
||||
|
||||
if (_tabKeyTraversesCells)
|
||||
{
|
||||
if ([self _selectPreviousSelectableCellBeforeRow: _selectedRow
|
||||
|
|
Loading…
Reference in a new issue