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

Commit 0a01f076 authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

Merge "Fix bug 2963261"

parents 47c41e80 cdee4460
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -706,7 +706,8 @@ public class ListPopupWindow {
            if (mItemClickListener != null) {
            if (mItemClickListener != null) {
                final DropDownListView list = mDropDownList;
                final DropDownListView list = mDropDownList;
                final View child = list.getChildAt(position - list.getFirstVisiblePosition());
                final View child = list.getChildAt(position - list.getFirstVisiblePosition());
                mItemClickListener.onItemClick(list, child, position, child.getId());
                final ListAdapter adapter = list.getAdapter();
                mItemClickListener.onItemClick(list, child, position, adapter.getItemId(position));
            }
            }
            return true;
            return true;
        }
        }