[vlc-devel] commit: XCB: make the "blank" cursor really transparent ( Rémi Denis-Courmont )

git version control git at videolan.org
Wed Oct 28 20:19:21 CET 2009


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Oct 28 21:19:08 2009 +0200| [58f6cd8a550d9451e0c23e3cc1a6407776775d71] | committer: Rémi Denis-Courmont 

XCB: make the "blank" cursor really transparent

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=58f6cd8a550d9451e0c23e3cc1a6407776775d71
---

 modules/video_output/xcb/common.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/video_output/xcb/common.c b/modules/video_output/xcb/common.c
index e9e55ac..ecaf6e4 100644
--- a/modules/video_output/xcb/common.c
+++ b/modules/video_output/xcb/common.c
@@ -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)
     {




More information about the vlc-devel mailing list