Skip to content

Commit e5921af

Browse files
authoredFeb 26, 2025··
Merge pull request #99 from weihsinyeh/cursor
Fix the cursor position
2 parents 1f7feeb + 50a71ff commit e5921af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/cursor.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ twin_pixmap_t *twin_make_cursor(int *hx, int *hy)
116116
twin_pixmap_create_const(TWIN_ARGB32, 14, 20, 14 * 4, pixels);
117117
if (!cur)
118118
return NULL;
119-
*hx = 14;
120-
*hy = 20;
119+
*hx = 0;
120+
*hy = 0;
121121
return cur;
122122
}

0 commit comments

Comments
 (0)
Please sign in to comment.