How to disable horizontal scrolling in ScrollBar (JavaFX)?

cy221 picture cy221 · May 22, 2015 · Viewed 17.8k times · Source

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.

Answer

Spotted picture Spotted · May 22, 2015

scrollPane.setFitToWidth(true);