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

Commit 639e18eb authored by Jim Miller's avatar Jim Miller Committed by Android Git Automerger
Browse files

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

* commit 'f0520930':
  Allow lower case for owner info in keyguard
parents d87cb794 f0520930
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);