Commit 3922b615 authored by David Fuhrmann's avatar David Fuhrmann

macosx: workaround for lion fullscreen behaviour at startup (refs #6668)

(cherry picked from commit 8d9646c187862a9816c943fdc42742e84ec236e7)
Signed-off-by: default avatarDavid Fuhrmann <david.fuhrmann@googlemail.com>
parent 8047362d
...@@ -2084,6 +2084,9 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -2084,6 +2084,9 @@ static VLCMainWindow *_o_sharedInstance = nil;
#pragma mark Lion's native fullscreen handling #pragma mark Lion's native fullscreen handling
- (void)windowWillEnterFullScreen:(NSNotification *)notification - (void)windowWillEnterFullScreen:(NSNotification *)notification
{ {
// workaround, see #6668
[NSApp setPresentationOptions:(NSApplicationPresentationFullScreen | NSApplicationPresentationAutoHideDock | NSApplicationPresentationAutoHideMenuBar)];
var_SetBool( pl_Get( VLCIntf ), "fullscreen", true ); var_SetBool( pl_Get( VLCIntf ), "fullscreen", true );
vout_thread_t *p_vout = getVout(); vout_thread_t *p_vout = getVout();
......
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