From ac6d3a3f71cb4905cd4dfc5824fb9e8e1fc88b73 Mon Sep 17 00:00:00 2001 From: Jeff Boek Date: Thu, 14 Feb 2019 15:32:32 -0800 Subject: [PATCH] [fenix] For https://github.com/mozilla-mobile/fenix/issues/357 - Forces history titles to be a single line --- app/src/main/res/layout/history_list_item.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/src/main/res/layout/history_list_item.xml b/app/src/main/res/layout/history_list_item.xml index efd9da46d..48269c011 100644 --- a/app/src/main/res/layout/history_list_item.xml +++ b/app/src/main/res/layout/history_list_item.xml @@ -31,8 +31,13 @@ android:layout_height="wrap_content" android:layout_marginTop="8dp" android:layout_marginStart="16dp" + android:layout_marginEnd="20dp" android:textColor="@color/history_title" + android:textAlignment="viewStart" android:textSize="18sp" + android:singleLine="true" + android:ellipsize="end" + app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toEndOf="@id/history_favicon" app:layout_constraintTop_toTopOf="parent" />