Commit 4e7ebf8d authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: fixed a logic problem which prevent the proper exit off the fullscreen...

macosx: fixed a logic problem which prevent the proper exit off the fullscreen mode when using the 64bit linked against the 10.7 SDK on 10.6 (close #6157)
parent 14e37593
......@@ -1339,8 +1339,11 @@ return YES;
else
[self makeFirstResponder: nil];
if (!b_videoPlayback && b_fullscreen && !b_nativeFullscreenMode)
[[VLCCoreInteraction sharedInstance] toggleFullscreen];
if (!b_videoPlayback && b_fullscreen)
{
if (!b_nativeFullscreenMode || !OSX_LION)
[[VLCCoreInteraction sharedInstance] toggleFullscreen];
}
}
- (void)resizeWindow
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment