(-acceptsFirstResponder): Implement to return NO.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16598 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Alexander Malmberg 2003-05-01 19:50:20 +00:00
parent ecb096136a
commit accbe13cb3
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2003-05-01 21:48 Alexander Malmberg <alexander@malmberg.org>
* Source/NSScroller.m (-acceptsFirstResponder): Implement to
return NO.
2003-05-01 20:02 Alexander Malmberg <alexander@malmberg.org>
* Source/NSInputManager.m (-loadBindingsWithName:): Update for file

View file

@ -88,6 +88,11 @@ static NSColor *scrollBarColor = nil;
return YES;
}
- (BOOL) acceptsFirstResponder
{
return NO;
}
- (NSScrollArrowPosition) arrowsPosition
{
return _arrowsPosition;