-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scrolling in ListBox with touch gestures is not working correctly #3429
Comments
ListBox is currently incapable of smooth scrolling when virtualization is enabled, it can only scroll items one-by-one and reacts to mouse wheel 'steps'. Obviously that's an imperfect solution. There is currently work in progress to make our containers to use |
The problem is the fixed value for I will wait for the |
Somewhat related, not sure if I should open a new issue: Using the mouse Scroll Wheel over the expanded-state ScrollBar doesn't scroll the ListBox. Using the Scroll Wheel on the ListBox itself works just fine. |
@robloo it's better to create another issue. As I understand, scrollbar handles wheel event instead of listbox under it. |
Try to improve scrolling with gestures on virtualized lists. Instead of using a fixed item size, try to calculate an item size by dividing the control bounds by the logical viewport size. Fixes #3429
While scrolling with touch gestures in a ListBox, the touched item doesn't follow the finger as it should.
This make it very hard to scroll with gestures.
The text was updated successfully, but these errors were encountered: