]> git.sesse.net Git - vlc/commitdiff
XCB: transparent rather than black cursor (fixes #3916)
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 17 Jul 2010 11:15:14 +0000 (14:15 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 17 Jul 2010 11:15:14 +0000 (14:15 +0300)
modules/video_output/xcb/events.c

index 0d3e656c2b71b279df5ed945d199dc00cfbc468f..e09c0cc9cf6c55b349d97bafd5c85f555ec140f6 100644 (file)
@@ -84,7 +84,7 @@ xcb_cursor_t CreateBlankCursor (xcb_connection_t *conn,
     xcb_pixmap_t pix = xcb_generate_id (conn);
 
     xcb_create_pixmap (conn, 1, pix, scr->root, 1, 1);
-    xcb_create_cursor (conn, cur, pix, pix, 0, 0, 0, 1, 1, 1, 0, 0);
+    xcb_create_cursor (conn, cur, pix, pix, 0, 0, 0, 0, 0, 0, 1, 1);
     return cur;
 }