From 8f55741b50412cc10b5bd5fb92875e5bc420c568 Mon Sep 17 00:00:00 2001 From: Ilia Kurtov Date: Mon, 5 Jun 2017 11:24:28 +0300 Subject: [PATCH] add check for app:textAllCaps --- .../ru/touchin/roboswag/components/views/TypefacedTextView.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/ru/touchin/roboswag/components/views/TypefacedTextView.java b/src/main/java/ru/touchin/roboswag/components/views/TypefacedTextView.java index 1934c44..715e77e 100644 --- a/src/main/java/ru/touchin/roboswag/components/views/TypefacedTextView.java +++ b/src/main/java/ru/touchin/roboswag/components/views/TypefacedTextView.java @@ -181,6 +181,8 @@ public class TypefacedTextView extends AppCompatTextView { "remove maxLines and use lineStrategy"); AttributesUtils.checkAttribute(typedArray, errors, AttributesUtils.getField(androidRes, "TextView_minLines"), false, "remove minLines and use lineStrategy"); + AttributesUtils.checkAttribute(typedArray, errors, AttributesUtils.getField(androidRes, "TextView_textAllCaps"), false, + "remove textAllCaps and use app:textAllCaps"); } }