I am developing a small python gui, just for fun and for learning, and I have been trying to change the cursor shape over canvas items.
I know that it is possible to change the cursor shape when hovering over a canvas widget, using the cursor="whatever" option at canvas creation. But I would like to do that for items inside this canvas only.
That makes the item correctly:
self.image_obj = canvas.create_image(
self.column_coordinate,
self.row_coordinate,
image=image
)
That does not work:
self.image_obj = canvas.create_image(
self.column_coordinate,
self.row_coordinate,
image=image,
cursor="hand1"
)
The "cursor" option does not seem to exist for items, is there a way to go around the problem?