Correction of last changes as pointed out by Derek Fawcus

<dfawcus@employees.org>.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@31032 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2010-07-26 11:05:07 +00:00
parent ec9b01146a
commit f5eb73e8da
2 changed files with 6 additions and 2 deletions

View file

@ -1,10 +1,14 @@
2010-07-26 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSWindow.m (-keyDown:): Correction of last change.
2010-07-25 Eric Wasylishen <ewasylishen@gmail.com>
* Source/NSSplitView.m (-adjustSubviews):
Call setFrame: on subviews rather than setFrameSize: followed
by setFrameOrigin:, so that the subviews never have an inconsistent
frame (old origin + new size).
This was messing up cases with NSOpenGLView's inside split views,
(e.g. usr-apps/examples/gui/MyGL) because the NSOpenGLView,
when notified of its size changing, was using the invalid origin.

View file

@ -3219,7 +3219,7 @@ resetCursorRectsForView(NSView *theView)
}
// If this is a BACKTAB event, move to the previous key view
if (character == NSTabCharacter)
if (character == NSBackTabCharacter)
{
[self selectPreviousKeyView: self];
return;