We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0cd3c97 + 9fdabab commit f052093Copy full SHA for f052093
policy/src/com/android/internal/policy/impl/keyguard/KeyguardStatusViewManager.java
@@ -230,7 +230,8 @@ void refreshDate() {
230
}
231
232
private void maybeSetUpperCaseText(TextView textView, CharSequence text) {
233
- if (KeyguardViewManager.USE_UPPER_CASE) { // currently only required for date view
+ if (KeyguardViewManager.USE_UPPER_CASE
234
+ && textView.getId() != R.id.owner_info) { // currently only required for date view
235
textView.setText(text != null ? text.toString().toUpperCase() : null);
236
} else {
237
textView.setText(text);
0 commit comments