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

Commit a9f6486c authored by Svetoslav's avatar Svetoslav Committed by Android Git Automerger
Browse files

am 176b1955: Merge "Ignore not visible views computing click point for...

am 176b1955: Merge "Ignore not visible  views computing click point for accessibility." into lmp-dev

* commit '176b19559e3775e59ce852fa54343bea5663ee17':
  Ignore not visible  views computing click point for accessibility.
parents ad81bb5e 856fcb62
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -836,6 +836,11 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
                break;
            }

            // Ignore invisible views as they are not interactive.
            if (sibling.getVisibility() != View.VISIBLE) {
                continue;
            }

            // If sibling is not interactive we do not care.
            if (!sibling.isClickable() && !sibling.isLongClickable()) {
                continue;