I disabled showing the horizontal ScrollBar with following code:
scrollPane.setHbarPolicy(ScrollPane.ScrollBarPolicy.NEVER);
It's no longer visible, but usuable with the mouse wheel. How can I prevent that?
There's a ScrollPane with vertical ScrollBar. But I can click the mouse wheel to right and the content is scrolling horizontal.
Thanks.