am dea6e86d: am 3422ceb6: Merge "Bug fix for building the hover target list"

* commit 'dea6e86dce716b67fe92c9b281fe9e79256f3b78':
  Bug fix for building the hover target list
This commit is contained in:
Jeff Brown
2013-05-28 15:49:13 -07:00
committed by Android Git Automerger

View File

@@ -1507,9 +1507,9 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
if (lastHoverTarget != null) {
lastHoverTarget.next = hoverTarget;
} else {
lastHoverTarget = hoverTarget;
mFirstHoverTarget = hoverTarget;
}
lastHoverTarget = hoverTarget;
// Dispatch the event to the child.
if (action == MotionEvent.ACTION_HOVER_ENTER) {