Hi!
How could I change custom cursor size? I was playing with Point(a,b), however the cursor is always 32x32 and it looks horribly. Below you can see my code snippet. Thanks!
Toolkit toolkit = Toolkit.getDefaultToolkit();
Image imageCrossCursor = toolkit.getImage(BeadToolbarColor.class.getResource("/icons/cross_cursor.png"));
cross_cursor = toolkit.createCustomCursor(imageCrossCursor, new Point(0,0), "Cross cursor");
panel.setCursor(cross_cursor);