java.lang.StackOverflowError when using mousewheel

Anyone knows why this is output to the console when using the mouse wheel?

Yeah I know what it means. Your code is busted :wink:

I kid I kid… now if you paste your code related to mouse wheel listening we can help you.

Anyone knows why this is output to the console when using the mouse wheel?

No.

No one can guess what you did wrong.

Everytime I’ve had a stack overflow its been because I’ve accidentally made an infinitely recursive function. So check that your mouse wheel event isn’t triggering some kind of state change, which triggers a mouse wheel event, which triggers some kind of state change…