From 48faa05298c947efb10730f6d4a137e50cab0593 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Saleniuk?= Date: Wed, 6 May 2026 16:54:36 +0200 Subject: [PATCH 1/2] fix: participant name in a single line --- .../ui/calling/ongoing/participantslist/ParticipantItem.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/main/kotlin/com/wire/android/ui/calling/ongoing/participantslist/ParticipantItem.kt b/app/src/main/kotlin/com/wire/android/ui/calling/ongoing/participantslist/ParticipantItem.kt index b6275bbc82..666d0a095d 100644 --- a/app/src/main/kotlin/com/wire/android/ui/calling/ongoing/participantslist/ParticipantItem.kt +++ b/app/src/main/kotlin/com/wire/android/ui/calling/ongoing/participantslist/ParticipantItem.kt @@ -32,6 +32,7 @@ import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.res.painterResource import androidx.compose.ui.res.stringResource +import androidx.compose.ui.text.style.TextOverflow import com.wire.android.R import com.wire.android.model.NameBasedAvatar import com.wire.android.model.UserAvatarData @@ -68,6 +69,8 @@ fun ParticipantItem( text = participant.name.orEmpty(), style = typography().title02, color = colorsScheme().onSurface, + maxLines = 1, + overflow = TextOverflow.Ellipsis, ) MembershipQualifierLabel(membership = participant.membership) } From cc98cf1451761388c75f1c5bf530080c44d8e3f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Saleniuk?= Date: Wed, 6 May 2026 17:01:34 +0200 Subject: [PATCH 2/2] fix: opening the reactions panel --- .../wire/android/ui/calling/ongoing/OngoingCallScreen.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/wire/android/ui/calling/ongoing/OngoingCallScreen.kt b/app/src/main/kotlin/com/wire/android/ui/calling/ongoing/OngoingCallScreen.kt index 377512fe77..8b75901595 100644 --- a/app/src/main/kotlin/com/wire/android/ui/calling/ongoing/OngoingCallScreen.kt +++ b/app/src/main/kotlin/com/wire/android/ui/calling/ongoing/OngoingCallScreen.kt @@ -463,7 +463,11 @@ private fun OngoingCallContent( onHangUpCall = hangUpCall, onToggleVideo = toggleVideo, onCallReactionsClick = { - showInCallReactionsPanel = !showInCallReactionsPanel + scope.launch { + scaffoldState.bottomSheetState.partialExpand() + }.invokeOnCompletion { + showInCallReactionsPanel = !showInCallReactionsPanel + } }, onCameraPermissionPermanentlyDenied = onCameraPermissionPermanentlyDenied, modifier = Modifier