Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
This isn't fixed in alpha 6 :(. It's easily reproducible by starting a drag with one finger and then tapping somewhere else (think back button) which calls clearSelection().
Description
In FastScroller.drawVerticalScrollbar() , it is calling Canvas.scale() .
canvas.scale(1, 1)
to restore the mirroring for RTL, however it should actually becanvas.scale(-1, 1)
, and the former one is a no-op according toMeanwhile, the touchable width of the scrollbar in RTL should still be its full width, so there's no need to divide it by 2 in FastScroller.isPointInsideVerticalThumb() .