Set up the next key view chain in the alert panels

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@10190 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2001-06-16 11:07:03 +00:00
parent 6d4ea38fb5
commit f71b4bf6d2

View file

@ -558,6 +558,11 @@ setControl(NSView* content, id control, NSString *title)
altButton = [self _makeButtonWithRect: rect];
othButton = [self _makeButtonWithRect: rect];
/* Create the nextKeyView chain */
[defButton setNextKeyView: othButton];
[othButton setNextKeyView: altButton];
[altButton setNextKeyView: defButton];
rect.size.height = 80.0;
scroll = makeScrollViewWithRect(rect);