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

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

Fix list navigation callbacks for ActionBarView

Fix a regression from a previous refactoring where the call ordering
between setNavigationMode and setListNavigationCallbacks could result
in the item selection listener being ignored.

Bug 15395053

Change-Id: I5330f2c684a21448c64c6b62eec10b96405758f7
parent f5188cf6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -755,6 +755,7 @@ public class ActionBarView extends AbsActionBarView implements DecorToolbar {
        mNavItemSelectedListener = l;
        if (mSpinner != null) {
            mSpinner.setAdapter(adapter);
            mSpinner.setOnItemSelectedListener(l);
        }
    }