mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
* NSWindow.m acceptsFirstResponder implement.
* NSView.m: removeFromSuperview remove view from responder chain. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3476 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b07c73de04
commit
9104a852b4
3 changed files with 661 additions and 653 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Dec 16 1998 Felipe A. Rodriguez <far@ix.netcom.com>
|
||||
|
||||
* NSWindow.m acceptsFirstResponder implement.
|
||||
* NSView.m: removeFromSuperview remove view from responder chain.
|
||||
|
||||
Wed Dec 16 15:30:00 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* NSResponder.m: bugfix - now beeps when it can't handle a key down.
|
||||
|
|
|
@ -215,6 +215,9 @@ NSMutableArray *views;
|
|||
if (!super_view) // if no superview then
|
||||
return; // just return
|
||||
|
||||
if([window firstResponder] == self)
|
||||
[window makeFirstResponder:window];
|
||||
|
||||
[self viewWillMoveToWindow:nil];
|
||||
|
||||
views = [super_view subviews];
|
||||
|
|
1306
Source/NSWindow.m
1306
Source/NSWindow.m
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue