Navigation Menu

Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Added a FIXME discussion to last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 27, 2013
1 parent 5c27dc7 commit 8e91cdb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/video/cocoa/SDL_cocoawindow.m
Expand Up @@ -158,7 +158,14 @@ - (void)close
}

/* Make the next window in the z-order Key. If we weren't the foreground
when closed, this is a no-op. */
when closed, this is a no-op.
!!! FIXME: Note that this is a hack, and there are corner cases where
!!! FIXME: this fails (such as the About box). The typical nib+RunLoop
!!! FIXME: handles this for Cocoa apps, but we bypass all that in SDL.
!!! FIXME: We should remove this code when we find a better way to
!!! FIXME: have the system do this for us. See discussion in
!!! FIXME: http://bugzilla.libsdl.org/show_bug.cgi?id=1825
*/
windows = [NSApp orderedWindows];
if ([windows count] > 0) {
NSWindow *win = (NSWindow *) [windows objectAtIndex:0];
Expand Down

0 comments on commit 8e91cdb

Please sign in to comment.