From fc7a2ea22be42f9e4d9132ded5538428f4051700 Mon Sep 17 00:00:00 2001 From: Lennox Date: Fri, 11 Sep 2026 17:48:30 +0530 Subject: [PATCH 1/2] fix: show the full description of space permissions The description of a role in the space member permissions list was capped at two lines with a middle ellipsis. Android only applies a middle ellipsis to single-line text, so longer descriptions such as the one for "Can manage" were silently cut after the second line. The description now has room for four lines and uses an end ellipsis, which Android does apply to multi-line text, so anything longer is visibly truncated instead of hidden. Signed-off-by: Lennox --- owncloudApp/src/main/res/layout/role_item.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/owncloudApp/src/main/res/layout/role_item.xml b/owncloudApp/src/main/res/layout/role_item.xml index c971be46606..b7d719ecaba 100644 --- a/owncloudApp/src/main/res/layout/role_item.xml +++ b/owncloudApp/src/main/res/layout/role_item.xml @@ -74,8 +74,8 @@ android:text="@string/placeholder_sentence" android:textSize="13sp" android:textColor="@color/textColor" - android:ellipsize="middle" - android:maxLines="2"/> + android:ellipsize="end" + android:maxLines="4"/> From 5edea00f0d8f5d143bda691ff134d71527cbb692 Mon Sep 17 00:00:00 2001 From: Lennox Date: Fri, 11 Sep 2026 17:48:30 +0530 Subject: [PATCH 2/2] chore: add calens file Signed-off-by: Lennox --- changelog/unreleased/4976 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 changelog/unreleased/4976 diff --git a/changelog/unreleased/4976 b/changelog/unreleased/4976 new file mode 100644 index 00000000000..c193dd38eef --- /dev/null +++ b/changelog/unreleased/4976 @@ -0,0 +1,6 @@ +Bugfix: Show the full description of space permissions + +More room has been given to the description of a role in the space member permissions list, so longer descriptions are no longer cut after the second line, and any text that still does not fit is ellipsized. + +https://github.com/owncloud/android/issues/4968 +https://github.com/owncloud/android/pull/4976