Commit 07c2fc7c authored by David Fuhrmann's avatar David Fuhrmann Committed by Felix Paul Kühne

macosx: also notify vout modules if we go to fullscreen

(cherry picked from commit 5769e0a402a4970a22f3073497f86ef4c5ed4a1b)
parent 94abe5a0
...@@ -628,7 +628,14 @@ static VLCCoreInteraction *_o_sharedInstance = nil; ...@@ -628,7 +628,14 @@ static VLCCoreInteraction *_o_sharedInstance = nil;
if( !p_intf ) if( !p_intf )
return; return;
var_ToggleBool( pl_Get( p_intf ), "fullscreen" ); BOOL b_fs = var_ToggleBool( pl_Get( p_intf ), "fullscreen" );
vout_thread_t *p_vout = getVout();
if( p_vout )
{
var_SetBool( p_vout, "fullscreen", b_fs );
vlc_object_release( p_vout );
}
} }
@end @end
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