mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 00:10:48 +00:00
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:
parent
6d682ee88e
commit
ad9ddfe0ea
5 changed files with 33 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue