Commit 58f6cd8a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

XCB: make the "blank" cursor really transparent

parent ab9943a6
......@@ -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)
{
......
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