Merge pull request #714 from warrickct/quote-cutoff-fix

Fixing quote cutoff when font is too large.
This commit is contained in:
Harris
2021-08-31 06:14:33 +00:00
committed by GitHub
3 changed files with 18 additions and 8 deletions

View File

@@ -67,11 +67,11 @@
android:id="@+id/quoteViewBodyTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo, I need your help here!"
android:textSize="@dimen/small_font_size"
android:textColor="@color/text"
android:ellipsize="end"
android:maxLines="3"
android:ellipsize="end" />
android:text="Yo, I need your help here!"
android:textColor="@color/text"
android:textSize="@dimen/small_font_size" />
</LinearLayout>