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

Commit cdee4460 authored by Adam Powell's avatar Adam Powell
Browse files

Fix bug 2963261

Change-Id: I31952474cf9d31fff78436461aeb7d0ad34d9068
parent 18931f57
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -706,7 +706,8 @@ public class ListPopupWindow {
            if (mItemClickListener != null) {
                final DropDownListView list = mDropDownList;
                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;
        }