Commit 42f72172 authored by David Fuhrmann's avatar David Fuhrmann

macosx: fix issue where fullscreen controls are deactivated then video starts...

macosx: fix issue where fullscreen controls are deactivated then video starts from lion fullscreen mode

close #6351
parent 66b3569c
......@@ -1541,7 +1541,9 @@ static VLCMainWindow *_o_sharedInstance = nil;
[o_bottombar_view setHidden: b_videoPlayback];
else
[o_bottombar_view setHidden: NO];
if (!b_videoPlayback)
if( b_videoPlayback )
[o_fspanel setActive: nil];
else
[o_fspanel setNonActive: nil];
}
......
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