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

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

am 60b52ee9: Fix class name for OverflowMenuButton [DO NOT MERGE]

* commit '60b52ee9':
  Fix class name for OverflowMenuButton [DO NOT MERGE]
parents 503aaa48 60b52ee9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -181,8 +181,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;