From 258f5d8f2646d510ea2286f75182d1ef8f910729 Mon Sep 17 00:00:00 2001 From: Sergey Serokurov Date: Wed, 24 Nov 2021 16:17:31 -0800 Subject: [PATCH] Fix truncated string in bubbles setting screen Bug: 187217715 Test: Manual, screenshot after the fix at https://screenshot.googleplex.com/4DjWc6AZTE6e75N Change-Id: Ib683a9500cefed0d79192866e691257380a72a92 --- res/layout/bubble_preference.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/res/layout/bubble_preference.xml b/res/layout/bubble_preference.xml index 08f25b4538b..eb9a8f14d75 100644 --- a/res/layout/bubble_preference.xml +++ b/res/layout/bubble_preference.xml @@ -55,7 +55,7 @@ android:layout_height="wrap_content" android:layout_centerVertical="true" android:ellipsize="end" - android:maxLines="2" + android:maxLines="3" android:clickable="false" android:focusable="false" android:layout_toEndOf="@id/bubble_all_icon" @@ -87,7 +87,7 @@ android:layout_height="wrap_content" android:layout_centerVertical="true" android:ellipsize="end" - android:maxLines="2" + android:maxLines="3" android:clickable="false" android:focusable="false" android:layout_toEndOf="@id/bubble_selected_icon" @@ -119,7 +119,7 @@ android:layout_height="wrap_content" android:layout_centerVertical="true" android:ellipsize="end" - android:maxLines="2" + android:maxLines="3" android:clickable="false" android:focusable="false" android:layout_toEndOf="@id/bubble_none_icon"