From 71671897d7f12d951ae049b90af2cf4f29d22c07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Hern=C3=A1ndez?= Date: Mon, 30 Sep 2024 18:01:31 +0200 Subject: [PATCH] Make the name EditText at least 48dp high in the Mode rename page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Touch targets should be at a minimum 48x48 dp; this view was 47 dp high. ¯\_(ツ)_/¯ Fixes: 369963437 Test: manual Flag: android.app.modes_ui Change-Id: I8fda0cd505f02abb561e24e583b3ab509b5ef4dd --- res/layout/modes_edit_name.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/res/layout/modes_edit_name.xml b/res/layout/modes_edit_name.xml index 0b086c746ed..626d7b40c51 100644 --- a/res/layout/modes_edit_name.xml +++ b/res/layout/modes_edit_name.xml @@ -26,6 +26,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@android:id/edit" + android:minHeight="48dp" android:maxLines="1" android:inputType="text|textCapSentences" android:imeOptions="actionDone"