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

Commit f0520930 authored by Jim Miller's avatar Jim Miller Committed by Android (Google) Code Review
Browse files

Merge "Allow lower case for owner info in keyguard" into jb-mr1-dev

parents 0cd3c976 9fdabab7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -230,7 +230,8 @@ class KeyguardStatusViewManager {
    }

    private void maybeSetUpperCaseText(TextView textView, CharSequence text) {
        if (KeyguardViewManager.USE_UPPER_CASE) { // currently only required for date view
        if (KeyguardViewManager.USE_UPPER_CASE
                && textView.getId() != R.id.owner_info) { // currently only required for date view
            textView.setText(text != null ? text.toString().toUpperCase() : null);
        } else {
            textView.setText(text);