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

Commit 70e37696 authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

Merge "Fix ActionBar#setHomeActionContentDescription(0)" into jb-mr2-dev

parents adff8b75 2eeb419e
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 {