Fixed camera switch button not visible when alone in a conf

This commit is contained in:
Sylvain Berfini 2024-04-19 11:02:34 +02:00
parent a13b46bd2c
commit 2d1479a64f

View file

@ -129,7 +129,7 @@
android:layout_marginStart="5dp"
android:layout_marginEnd="5dp"
android:src="@drawable/camera_rotate"
android:visibility="@{!viewModel.fullScreenMode && !viewModel.pipMode && viewModel.showSwitchCamera && conferenceViewModel.participantDevices.size() > 1 && conferenceViewModel.isMeParticipantSendingVideo ? View.VISIBLE : View.GONE}"
android:visibility="@{!viewModel.fullScreenMode && !viewModel.pipMode && viewModel.showSwitchCamera && conferenceViewModel.isMeParticipantSendingVideo ? View.VISIBLE : View.GONE}"
app:tint="@color/white"
app:layout_constraintTop_toTopOf="@id/back"
app:layout_constraintBottom_toBottomOf="@id/back"