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

Commit 2c742c2a authored by Adam Powell's avatar Adam Powell
Browse files

Fix bug 5000009 - NPE in Phone UI

Change-Id: I9c5c2c73b340192d754949865b6e4ee4a9a324ff
parent a72ef62e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -154,7 +154,7 @@ public class ActionMenuItemView extends LinearLayout
        // populate accessibility description with title
        setContentDescription(title);

        if (mShowTextAllCaps) {
        if (mShowTextAllCaps && title != null) {
            mTextButton.setText(title.toString().toUpperCase(
                    getContext().getResources().getConfiguration().locale));
        } else {