Merge "Don't constraint view sizes as much" into rvc-dev
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardSliceView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardSliceView.java
index 95e9c20..9d8c545 100644
--- a/packages/SystemUI/src/com/android/keyguard/KeyguardSliceView.java
+++ b/packages/SystemUI/src/com/android/keyguard/KeyguardSliceView.java
@@ -510,7 +510,7 @@
             for (int i = 0; i < childCount; i++) {
                 View child = getChildAt(i);
                 if (child instanceof KeyguardSliceTextView) {
-                    ((KeyguardSliceTextView) child).setMaxWidth(width / childCount);
+                    ((KeyguardSliceTextView) child).setMaxWidth(width / 3);
                 }
             }
             super.onMeasure(widthMeasureSpec, heightMeasureSpec);