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

Commit 1700ae0a authored by Adam Powell's avatar Adam Powell
Browse files

Fix bug 3295495 - Wrong menu item selection in PopupMenu

Change-Id: I17ec55f09dbed9797cb702a7252f6c89e861cc6a
parent 69535248
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ public class MenuPopupHelper implements AdapterView.OnItemClickListener, View.On
        if (mOverflowOnly) {
            item = mMenu.getOverflowItem(position);
        } else {
            item = mMenu.getItem(position);
            item = mMenu.getVisibleItems().get(position);
        }
        mMenu.performItemAction(item, 0);
        dismiss();