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

Commit c046c767 authored by Deepanshu Gupta's avatar Deepanshu Gupta Committed by Android Git Automerger
Browse files

am c0c96012: am 4b5fa4d3: Fix class name for OverflowMenuButton [DO NOT MERGE]

* commit 'c0c96012':
  Fix class name for OverflowMenuButton [DO NOT MERGE]
parents 11b715da c0c96012
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -180,8 +180,8 @@ public class ActionBarLayout extends LinearLayout {
            Predicate<View> overflowMenuButtonTest = new Predicate<View>() {
                @Override
                public boolean apply(View view) {
                    return view.getClass().getName()
                            .equals("android.widget.ActionMenuPresenter$OverflowMenuButton");
                    return view.getClass().getName().equals("com.android.internal.view.menu." +
                            "ActionMenuPresenter$OverflowMenuButton");
                }
            };
            View overflowMenu = null;