If there are many Items and the height of the content is growing, the scroll-pane scrolls to fast....
I get the source of the OpenJFX and get the skin for the scroll-pane there is the same bug.... I change this line and scrolling is normal
double vPixelValue = vRange / getSkinnable().getHeight();
changed to
double vPixelValue = vRange / nodeHeight;
I get the source of the OpenJFX and get the skin for the scroll-pane there is the same bug.... I change this line and scrolling is normal
double vPixelValue = vRange / getSkinnable().getHeight();
changed to
double vPixelValue = vRange / nodeHeight;
- duplicates
-
JDK-8126516 ScrollPane with large content using mouse wheel is useless
-
- Closed
-