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

Commit 398d197c authored by Joe Onorato's avatar Joe Onorato Committed by Android Git Automerger
Browse files

am 55896f3c: Merge change Ib71193bf into eclair

Merge commit '55896f3c' into eclair-plus-aosp

* commit '55896f3c':
  Fix 2283089 - ERD47B: Force Close of Launcher2 process when hitting Search button to invoke QSB
parents 85af68c8 55896f3c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1407,8 +1407,8 @@ public final class ViewRoot extends Handler implements ViewParent,

            // When in touch mode, focus points to the previously focused view,
            // which may have been removed from the view hierarchy. The following
            // line checks whether the view is still in the hierarchy
            if (focus == null || focus.getParent() == null) {
            // line checks whether the view is still in our hierarchy.
            if (focus == null || focus.mAttachInfo != mAttachInfo) {
                mRealFocusedView = null;
                return false;
            }