Add support for backtab character.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@31026 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2010-07-25 20:51:40 +00:00
parent 6d682ee88e
commit ad9ddfe0ea
5 changed files with 33 additions and 3 deletions

View file

@ -2517,6 +2517,9 @@ static NSTextFieldCell *titleCell;
case NSRightArrowFunctionKey:
[self moveRight:self];
return;
case NSBackTabCharacter:
[_window selectKeyViewPrecedingView: self];
return;
case NSTabCharacter:
{
if ([theEvent modifierFlags] & NSShiftKeyMask)
@ -2529,7 +2532,6 @@ static NSTextFieldCell *titleCell;
}
}
return;
break;
}
}