Commit 3da77497 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

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

(cherry picked from commit fb92e7a0440af1dcb237479702e559e0278a8bca)
parent aafcfdc3
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment