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 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) }