]> git.sesse.net Git - vlc/commitdiff
Use mouse as capture retangle center instead of upper left corner.
authorAntoine Cellerier <dionoea@videolan.org>
Mon, 26 May 2008 14:06:02 +0000 (16:06 +0200)
committerAntoine Cellerier <dionoea@videolan.org>
Mon, 26 May 2008 14:06:02 +0000 (16:06 +0200)
modules/access/screen/x11.c

index a8cf374945b77fbca6b1238848ae9b6b88c59763..60202857fa5a4575b68e2ba03342d0ecf90f2d53 100644 (file)
@@ -123,8 +123,12 @@ block_t *screen_Capture( demux_t *p_demux )
             &root, &child, &root_x, &root_y, &win_x, &win_y,
             &mask ) )
         {
+            root_x -= p_sys->i_width/2;
+            if( root_x < 0 ) root_x = 0;
             p_sys->i_left = __MIN( (unsigned int)root_x,
                                    p_sys->i_screen_width - p_sys->i_width );
+            root_y -= p_sys->i_height/2;
+            if( root_y < 0 ) root_y = 0;
             p_sys->i_top = __MIN( (unsigned int)root_y,
                                   p_sys->i_screen_height - p_sys->i_height );
         }