[vlc-commits] commit: XCB: transparent rather than black cursor (fixes #3916) ( Rémi Denis-Courmont )

git at videolan.org git at videolan.org
Sat Jul 17 13:15:43 CEST 2010


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Jul 17 14:15:14 2010 +0300| [fb92e7a0440af1dcb237479702e559e0278a8bca] | committer: Rémi Denis-Courmont 

XCB: transparent rather than black cursor (fixes #3916)

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

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

diff --git a/modules/video_output/xcb/events.c b/modules/video_output/xcb/events.c
index 0d3e656..e09c0cc 100644
--- a/modules/video_output/xcb/events.c
+++ b/modules/video_output/xcb/events.c
@@ -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;
 }
 



More information about the vlc-commits mailing list