Fix radio button clicks in multiselect mode.

This commit is contained in:
Rashad Sookram 2022-01-14 11:19:56 -05:00
parent d39ec479ba
commit bf2ab74ca4

View file

@ -19,7 +19,7 @@ class MultiselectRecyclerView @JvmOverloads constructor(
) : RecyclerView(context, attrs) {
override fun onInterceptTouchEvent(e: MotionEvent): Boolean {
val child: View? = children.firstOrNull { it is Multiselectable }
val child: View? = children.firstOrNull { it is Multiselectable && e.y.toInt() in it.top..it.bottom }
if (child != null) {
child.getHitRect(rect)