Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 275d8238 authored by Jeff Brown's avatar Jeff Brown
Browse files

Fix inverted scrolling condition in lists.

Change-Id: Iaf0de1f7cad565b59e8347cb3634cb620d8016b0
parent 50531248
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3270,7 +3270,7 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te
                        final float vscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL);
                        if (vscroll != 0) {
                            final int delta = (int) (vscroll * getVerticalScrollFactor());
                            if (trackMotionScroll(delta, delta)) {
                            if (!trackMotionScroll(delta, delta)) {
                                return true;
                            }
                        }