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

Commit 7e74c399 authored by Jim Miller's avatar Jim Miller Committed by Android Git Automerger
Browse files

am 639e18eb: am f0520930: Merge "Allow lower case for owner info in keyguard" into jb-mr1-dev

* commit '639e18eb':
  Allow lower case for owner info in keyguard
parents 49bbbf2c 639e18eb
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -230,7 +230,8 @@ class KeyguardStatusViewManager {
    }
    }


    private void maybeSetUpperCaseText(TextView textView, CharSequence text) {
    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);
            textView.setText(text != null ? text.toString().toUpperCase() : null);
        } else {
        } else {
            textView.setText(text);
            textView.setText(text);