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

Commit fa169f99 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix long-press issue in RelativeTouchListener." into rvc-dev am:...

Merge "Fix long-press issue in RelativeTouchListener." into rvc-dev am: 8208ca5d am: 1f03d59f am: 54158edd

Change-Id: I392aaddb7708e04929d19159b6b256abb9af9ef2
parents 46f35314 54158edd
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -115,7 +115,9 @@ abstract class RelativeTouchListener : View.OnTouchListener {

                performedLongClick = false
                handler.postDelayed({
                    if (v.isLongClickable) {
                        performedLongClick = v.performLongClick()
                    }
                }, ViewConfiguration.getLongPressTimeout().toLong())
            }