From 669f99466066a9fe3d02959cef57beffcd344182 Mon Sep 17 00:00:00 2001 From: faraz152 <38698072+faraz152@users.noreply.github.com> Date: Thu, 30 Apr 2026 17:05:06 +0500 Subject: [PATCH] fix: allow title and location fields to wrap long text Remove android:maxLines="1" from event_title and event_location so that long titles and locations wrap across multiple lines instead of being clipped. The fields remain single-line inputs (no newlines), only the visual display now wraps correctly. Fixes #1177 --- app/src/main/res/layout/activity_event.xml | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/main/res/layout/activity_event.xml b/app/src/main/res/layout/activity_event.xml index 77b6376b4..ae5c2ff12 100644 --- a/app/src/main/res/layout/activity_event.xml +++ b/app/src/main/res/layout/activity_event.xml @@ -45,7 +45,6 @@ android:hint="@string/title" android:inputType="textCapSentences" android:maxLength="180" - android:maxLines="1" android:minEms="20" android:textCursorDrawable="@null" android:textSize="@dimen/day_text_size" /> @@ -61,7 +60,6 @@ android:hint="@string/location" android:inputType="textCapWords" android:maxLength="180" - android:maxLines="1" android:minEms="20" android:textCursorDrawable="@null" android:textSize="@dimen/day_text_size" />