Commit 762a3d7f authored by Rafaël Carré's avatar Rafaël Carré

qt4: fix "Take snapshot" menu

parent ad11acb7
...@@ -1520,6 +1520,9 @@ void VLCMenuBar::DoAction( QObject *data ) ...@@ -1520,6 +1520,9 @@ void VLCMenuBar::DoAction( QObject *data )
|| !strcmp( var, "video-on-top" ) ) || !strcmp( var, "video-on-top" ) )
var_Set( pl_Get( p_object ), var, val ); var_Set( pl_Get( p_object ), var, val );
if ((var_Type( p_object, var) & VLC_VAR_CLASS) == VLC_VAR_VOID)
var_TriggerCallback( p_object, var );
else
var_Set( p_object, var, val ); var_Set( p_object, var, val );
} }
......
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