Commit c0375a91 authored by Gildas Bazin's avatar Gildas Bazin

* modules/control/hotkeys.c: fixed fullscreen hotkey when video filters are used.

parent 447ed553
...@@ -283,12 +283,10 @@ static void Run( intf_thread_t *p_intf ) ...@@ -283,12 +283,10 @@ static void Run( intf_thread_t *p_intf )
i_newvol*100/AOUT_VOLUME_MAX ); i_newvol*100/AOUT_VOLUME_MAX );
} }
} }
else if( i_action == ACTIONID_FULLSCREEN ) else if( i_action == ACTIONID_FULLSCREEN && p_vout )
{ {
if( p_vout ) var_Get( p_vout, "fullscreen", &val );
{ var_Set( p_vout, "fullscreen", (vlc_value_t)!val.b_bool );
p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
}
} }
else if( i_action == ACTIONID_PLAY ) else if( i_action == ACTIONID_PLAY )
{ {
......
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