Commit 8d5d2f83 authored by Rémi Duraffort's avatar Rémi Duraffort

Little correction of the double-clicks detection under sdl

parent bace31c8
...@@ -219,8 +219,8 @@ static int Open ( vlc_object_t *p_this ) ...@@ -219,8 +219,8 @@ static int Open ( vlc_object_t *p_this )
p_vout->p_sys->b_cursor = 1; p_vout->p_sys->b_cursor = 1;
p_vout->p_sys->b_cursor_autohidden = 0; p_vout->p_sys->b_cursor_autohidden = 0;
p_vout->p_sys->i_lastmoved = mdate();
p_vout->p_sys->i_lastmoved = p_vout->p_sys->i_lastpressed = mdate();
if( OpenDisplay( p_vout ) ) if( OpenDisplay( p_vout ) )
{ {
msg_Err( p_vout, "cannot set up SDL (%s)", SDL_GetError() ); msg_Err( p_vout, "cannot set up SDL (%s)", SDL_GetError() );
...@@ -361,8 +361,8 @@ static int Manage( vout_thread_t *p_vout ) ...@@ -361,8 +361,8 @@ static int Manage( vout_thread_t *p_vout )
{ {
switch( event.type ) switch( event.type )
{ {
case SDL_VIDEORESIZE: /* Resizing of window */ /* Resizing of window */
/* Update dimensions */ case SDL_VIDEORESIZE:
p_vout->i_changes |= VOUT_SIZE_CHANGE; p_vout->i_changes |= VOUT_SIZE_CHANGE;
p_vout->i_window_width = p_vout->p_sys->i_width = event.resize.w; p_vout->i_window_width = p_vout->p_sys->i_width = event.resize.w;
p_vout->i_window_height = p_vout->p_sys->i_height = event.resize.h; p_vout->i_window_height = p_vout->p_sys->i_height = event.resize.h;
......
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