Commit 79bbae7f authored by Rafaël Carré's avatar Rafaël Carré

qt4 fullscreen: Uses FIND_ANYWHERE to find vout, fixes trax issue 24

parent 38d165dd
......@@ -606,7 +606,7 @@ void ControlsWidget::setStatus( int status )
*/
void ControlsWidget::fullscreen()
{
vout_thread_t *p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_CHILD );
vout_thread_t *p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
if( p_vout)
{
var_SetBool( p_vout, "fullscreen", !var_GetBool( p_vout, "fullscreen" ) );
......
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