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

qt4: fix "Take snapshot" menu

parent ad11acb7
...@@ -1520,7 +1520,10 @@ void VLCMenuBar::DoAction( QObject *data ) ...@@ -1520,7 +1520,10 @@ 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 );
var_Set( 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 );
} }
void VLCMenuBar::updateRecents( intf_thread_t *p_intf ) void VLCMenuBar::updateRecents( intf_thread_t *p_intf )
......
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