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

Commit 349236f2 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: 8208ca5d

Change-Id: I61e9d78d436ffb659955b837c6f0b5e97f5ce42a
parents 84743e94 8208ca5d
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())
            }