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

Commit 2a20ddd9 authored by Adam Powell's avatar Adam Powell
Browse files

Tame some monkeys

Change-Id: I1bdcd466d6bacb0cebdd6bb0b5339477c2c284b0
parent 80362d4a
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -3155,7 +3155,10 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te
        }

        if (!inTouchMode && mSelectedPosition != INVALID_POSITION) {
            positionSelector(getChildAt(mSelectedPosition - mFirstPosition));
            final int childIndex = mSelectedPosition - mFirstPosition;
            if (childIndex >= 0 && childIndex < getChildCount()) {
                positionSelector(getChildAt(childIndex));
            }
        }

        mBlockLayoutRequests = false;