Unverified Commit dbe38eec authored by Jim Graham's avatar Jim Graham Committed by GitHub

Fix the scroll delta negation in the E2E version of picture_cache_perf benchmark (#107678)

parent d72f08f5
......@@ -19,7 +19,7 @@ void main() {
Future<void> scrollOnce(double offset) async {
await controller.timedDrag(
nestedScroll,
Offset(-offset, 0.0),
Offset(offset, 0.0),
const Duration(milliseconds: 300),
);
await Future<void>.delayed(const Duration(milliseconds: 500));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment