From fb92e7a0440af1dcb237479702e559e0278a8bca Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 17 Jul 2010 14:15:14 +0300 Subject: [PATCH] XCB: transparent rather than black cursor (fixes #3916) --- modules/video_output/xcb/events.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/video_output/xcb/events.c b/modules/video_output/xcb/events.c index 0d3e656c2b..e09c0cc9cf 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; } -- 2.39.2