]> git.sesse.net Git - vlc/commitdiff
XCB: make the "blank" cursor really transparent
authorRémi Denis-Courmont <remi@remlab.net>
Wed, 28 Oct 2009 19:19:08 +0000 (21:19 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Wed, 28 Oct 2009 19:19:08 +0000 (21:19 +0200)
modules/video_output/xcb/common.c

index e9e55acea4fd9c4dd9df19bd50677ce0348f334e..ecaf6e473b7d3afedaa78220a39f18045f77deef 100644 (file)
@@ -221,7 +221,7 @@ xcb_cursor_t CreateBlankCursor (xcb_connection_t *conn,
         fprintf (stderr, "Cannot create pixmap: %d", err->error_code);
         free (err);
     }
-    ck = xcb_create_cursor_checked (conn, cur, pix, pix, 0, 0, 0, 0, 0, 0, 0, 0);
+    ck = xcb_create_cursor_checked (conn, cur, pix, pix, 0, 0, 0, 1, 1, 1, 0, 0);
     err = xcb_request_check (conn, ck);
     if (err)
     {