Visibility of ephemeral icon next to send icon in chat room details

This commit is contained in:
Christophe Deschamps 2023-01-31 15:11:49 +01:00
parent 832a75726f
commit b418aa2732

View file

@ -322,7 +322,7 @@
android:enabled="@{chatSendingViewModel.sendMessageEnabled}"
android:padding="5dp"
android:src="@drawable/ephemeral_messages"
android:visibility="@{chatSendingViewModel.isReadOnly && viewModel.chatRoom.isEphemeralEnabled() ? View.VISIBLE : View.GONE, default=gone}"
android:visibility="@{!chatSendingViewModel.isReadOnly && viewModel.chatRoom.isEphemeralEnabled() ? View.VISIBLE : View.GONE, default=gone}"
app:layout_constraintBottom_toBottomOf="@id/send_message"
app:layout_constraintEnd_toEndOf="@id/send_message" />