How do I speed up the scroll speed in a JScrollPane when using the mouse wheel?

前端 未结 9 756
庸人自扰
庸人自扰 2020-12-12 23:03

I see the method JScrollPane.setWheelScrollingEnabled(boolean) to enable or disable the mouse wheel scrolling. Is there any way to adjust the speed of the scro

9条回答
  •  暖寄归人
    2020-12-12 23:54

    A quick search brought up this page: How to increase the JScrollPane scrolling speed for mousewheel users. It turns out that the scrolling increment is a property of the scroll bar itself (JScrollBar.setUnitIncrement) and not the scroll pane.

提交回复
热议问题