From 60067c259bd92f9a85138776fd11afa9dbec1221 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 6 Sep 2022 10:13:59 +0200 Subject: [PATCH] No need to change conference participant background color while in video (as video is supposed to be drawn above it)? --- ...p_conference_participant_remote_active_speaker_miniature.xml | 2 +- .../main/res/layout/voip_conference_participant_remote_grid.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/layout/voip_conference_participant_remote_active_speaker_miniature.xml b/app/src/main/res/layout/voip_conference_participant_remote_active_speaker_miniature.xml index 283134df8..8a0e89fd9 100644 --- a/app/src/main/res/layout/voip_conference_participant_remote_active_speaker_miniature.xml +++ b/app/src/main/res/layout/voip_conference_participant_remote_active_speaker_miniature.xml @@ -15,7 +15,7 @@ android:layout_width="@dimen/voip_active_speaker_miniature_size" android:layout_height="@dimen/voip_active_speaker_miniature_size" android:layout_margin="5dp" - android:background="@{!data.isInConference && !data.isJoining ? @drawable/shape_remote_paused_background : data.videoEnabled ? @drawable/shape_remote_video_background : @drawable/shape_remote_background, default=@drawable/shape_remote_background}" + android:background="@{!data.isInConference && !data.isJoining ? @drawable/shape_remote_paused_background : @drawable/shape_remote_background, default=@drawable/shape_remote_background}" app:layout_alignSelf="flex_end" app:layout_flexShrink="0"> diff --git a/app/src/main/res/layout/voip_conference_participant_remote_grid.xml b/app/src/main/res/layout/voip_conference_participant_remote_grid.xml index 4df851b2d..47908701a 100644 --- a/app/src/main/res/layout/voip_conference_participant_remote_grid.xml +++ b/app/src/main/res/layout/voip_conference_participant_remote_grid.xml @@ -20,7 +20,7 @@ android:layout_width="0dp" android:layout_height="0dp" android:layout_margin="5dp" - android:background="@{!data.isInConference && !data.isJoining ? @drawable/shape_remote_paused_background : data.videoEnabled ? @drawable/shape_remote_video_background : @drawable/shape_remote_background, default=@drawable/shape_remote_background}" + android:background="@{!data.isInConference && !data.isJoining ? @drawable/shape_remote_paused_background : @drawable/shape_remote_background, default=@drawable/shape_remote_background}" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent"