Commit ef8b5bf3 authored by Laurent Aimar's avatar Laurent Aimar

Fixed window position for clone.

parent 5768f298
...@@ -143,8 +143,8 @@ static int Open( vlc_object_t *p_this ) ...@@ -143,8 +143,8 @@ static int Open( vlc_object_t *p_this )
{ {
video_splitter_output_t *p_cfg = &p_splitter->p_output[i]; video_splitter_output_t *p_cfg = &p_splitter->p_output[i];
video_format_Copy( &p_cfg->fmt, &p_splitter->fmt ); video_format_Copy( &p_cfg->fmt, &p_splitter->fmt );
p_cfg->window.i_x = -1; p_cfg->window.i_x = 0;
p_cfg->window.i_y = -1; p_cfg->window.i_y = 0;
p_cfg->window.i_align = 0; p_cfg->window.i_align = 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