Skip to content

Commit f052093

Browse files
Jim MillerAndroid (Google) Code Review
authored andcommitted
Merge "Allow lower case for owner info in keyguard" into jb-mr1-dev
2 parents 0cd3c97 + 9fdabab commit f052093

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)