mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
(-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:
parent
ecb096136a
commit
accbe13cb3
2 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -88,6 +88,11 @@ static NSColor *scrollBarColor = nil;
|
|||
return YES;
|
||||
}
|
||||
|
||||
- (BOOL) acceptsFirstResponder
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (NSScrollArrowPosition) arrowsPosition
|
||||
{
|
||||
return _arrowsPosition;
|
||||
|
|
Loading…
Reference in a new issue