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

Commit 9fdabab7 authored by Jim Miller's avatar Jim Miller
Browse files

Allow lower case for owner info in keyguard

bug 7094419

Change-Id: Ic89d51f1d490b99a9cdd897b71057be37004301a
parent ab781ba0
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);