Commit 20729b41 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

gestures: cosmetic

parent 3d663c8e
...@@ -382,8 +382,8 @@ static int MovedEvent( vlc_object_t *p_this, char const *psz_var, ...@@ -382,8 +382,8 @@ static int MovedEvent( vlc_object_t *p_this, char const *psz_var,
int i_vertical = newval.coords.y - p_sys->i_last_y; int i_vertical = newval.coords.y - p_sys->i_last_y;
unsigned int pattern = 0; unsigned int pattern = 0;
i_horizontal = i_horizontal / p_sys->i_threshold; i_horizontal /= p_sys->i_threshold;
i_vertical = i_vertical / p_sys->i_threshold; i_vertical /= p_sys->i_threshold;
if( i_horizontal < 0 ) if( i_horizontal < 0 )
{ {
......
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