How to increase the slow scroll speed on a JScrollPane?
You can set your scrolling speed with this line of code
myJScrollPane.getVerticalScrollBar().setUnitIncrement(16);
Here is details.
You can set your scrolling speed with this line of code
myJScrollPane.getVerticalScrollBar().setUnitIncrement(16);
Here is details.