Change Mouse Hotspot

I used this code to change my mouse in panda:

    winprops=WindowProperties()
    winprops.setCursorFilename(Filename.binaryFilename("./data/curosor.ico"))
    base.win.requestProperties(winprops)

When I execute it it works fine, except that the mouse hotspot ( the point where I click ) is not the upper left corner of the image.
How can I set the hotspot of the cursor?

That’s up to the software that you used to design the ico file. There must be an option in there to set the hotspot (it’s stored as a property of the ico file, and has nothing to do with Panda).

David