# HG changeset patch # User Sam Lantinga # Date 1259738938 0 # Node ID 58cbfa81317a1789220aa0e175d70e06c4e0ea4b # Parent 8fde6aeb58df9ba668592fa81a7432b1d1ce00cc Don't need to hide the menu bar if we're not on the main display diff -r 8fde6aeb58df -r 58cbfa81317a src/video/cocoa/SDL_cocoamodes.m --- a/src/video/cocoa/SDL_cocoamodes.m Wed Dec 02 07:25:06 2009 +0000 +++ b/src/video/cocoa/SDL_cocoamodes.m Wed Dec 02 07:28:58 2009 +0000 @@ -255,7 +255,9 @@ } /* Hide the menu bar so it doesn't intercept events */ - HideMenuBar(); + if (CGDisplayIsMain(displaydata->display)) { + HideMenuBar(); + } /* Fade in again (asynchronously) */ if (fade_token != kCGDisplayFadeReservationInvalidToken) {