Commit 35a59f2d authored by Laurent Aimar's avatar Laurent Aimar

Fixed invalid var_SetBool in video_filter wrapper .

parent 6adc3961
......@@ -490,7 +490,7 @@ static int MouseEvent( vlc_object_t *p_this, char const *psz_var,
{
var_SetInteger( p_vout, "mouse-button-down", nmouse.i_pressed );
if( vlc_mouse_HasPressed( &omouse, &nmouse, MOUSE_BUTTON_LEFT ) )
var_SetBool( p_vout, "mouse-clicked", true );
var_SetCoords( p_vout, "mouse-clicked", nmouse.i_x, nmouse.i_y );
}
if( m.b_double_click )
{
......
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