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

Commit f61bd002 authored by Deepanshu Gupta's avatar Deepanshu Gupta
Browse files

Fix class name for OverflowMenuButton [DO NOT MERGE]

Change-Id: Ie3e709e7aadb2193397df8befef0c55624d7e4e3
(cherry picked from commit 4b5fa4d3)
parent d558ebdb
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;