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

Commit 8b2eb6fe authored by Eugene Susla's avatar Eugene Susla
Browse files

Smooth scroll RecyclerView on a11y ACTION_SCROLL_*

This is consistent with the behavior of ListView and ScrollView for that action

Bug: 63778054
Test: Go through bug steps and ensute it's fixed
Change-Id: I3999ecca5c9f90661c510233e6fc1971506a2187
parent 5a6a5417
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9556,7 +9556,7 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro
            if (vScroll == 0 && hScroll == 0) {
                return false;
            }
            mRecyclerView.scrollBy(hScroll, vScroll);
            mRecyclerView.smoothScrollBy(hScroll, vScroll);
            return true;
        }