mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-24 21:15:48 +00:00
Fix radio button clicks in multiselect mode.
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user