mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 16:00:37 +00:00
* Source/NSTableView.m (-textDidEndEditing:): Handle
NSIllegalTextMovement. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24425 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ff86a899ad
commit
a4eddcb158
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-01-28 Matt Rice <ratmice@gmail.com>
|
||||||
|
|
||||||
|
* Source/NSTableView.m (-textDidEndEditing:): Handle
|
||||||
|
NSIllegalTextMovement.
|
||||||
|
|
||||||
2007-01-27 Fred Kiefer <FredKiefer@gmx.de>
|
2007-01-27 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Headers/AppKit/NSMenuItemCell.h: Remove ivar
|
* Headers/AppKit/NSMenuItemCell.h: Remove ivar
|
||||||
|
|
|
@ -5231,6 +5231,8 @@ static BOOL selectContiguousRegion(NSTableView *self,
|
||||||
{
|
{
|
||||||
switch ([(NSNumber *)textMovement intValue])
|
switch ([(NSNumber *)textMovement intValue])
|
||||||
{
|
{
|
||||||
|
case NSIllegalTextMovement:
|
||||||
|
[self abortEditing];
|
||||||
case NSReturnTextMovement:
|
case NSReturnTextMovement:
|
||||||
[self _editNextCellAfterRow: row inColumn: column];
|
[self _editNextCellAfterRow: row inColumn: column];
|
||||||
// Send action ?
|
// Send action ?
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue