[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:16:06 CEST 2010


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

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

(cherry picked from commit fb92e7a0440af1dcb237479702e559e0278a8bca)

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

 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 3d17f0a..1dce547 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