Skip to content

Commit 9fdabab

Browse files
author
Jim Miller
committed
Allow lower case for owner info in keyguard
bug 7094419 Change-Id: Ic89d51f1d490b99a9cdd897b71057be37004301a
1 parent ab781ba commit 9fdabab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

policy/src/com/android/internal/policy/impl/keyguard/KeyguardStatusViewManager.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,8 @@ void refreshDate() {
230230
}
231231

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

0 commit comments

Comments
 (0)