home *** CD-ROM | disk | FTP | other *** search
-
- #import <appkit/appkit.h>
- #import "DocumentWindow.h"
-
- @implementation DocumentWindow
-
- - miniaturize:sender
- { /* it is necessary to override this method because
- the window by default does not send 'updateWindows'
- message
- */
-
- [super miniaturize:sender];
- [NXApp perform:@selector(updateWindows) with:nil
- afterDelay:1 cancelPrevious:YES];
- return self;
- }
-
- @end
-