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

Commit 61a826ef authored by Adam Powell's avatar Adam Powell Committed by Android Git Automerger
Browse files

am 70e37696: Merge "Fix ActionBar#setHomeActionContentDescription(0)" into jb-mr2-dev

* commit '70e37696':
  Fix ActionBar#setHomeActionContentDescription(0)
parents d2b8cd75 70e37696
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1354,7 +1354,7 @@ public class ActionBarView extends AbsActionBarView {

    public void setHomeActionContentDescription(int resId) {
        mHomeDescriptionRes = resId;
        mHomeDescription = getResources().getText(resId);
        mHomeDescription = resId != 0 ? getResources().getText(resId) : null;
    }

    static class SavedState extends BaseSavedState {