Fix overlap of join banner and camera toggle.

This commit is contained in:
Alex Hart
2024-09-11 10:54:44 -03:00
committed by Cody Henthorne
parent 7735ca9dab
commit baa6032770
5 changed files with 38 additions and 44 deletions

View File

@@ -0,0 +1,16 @@
/*
* Copyright 2024 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.thoughtcrime.securesms.service.webrtc.state
import org.thoughtcrime.securesms.service.webrtc.PendingParticipantCollection
/**
* Represents the current state of the pending participants card.
*/
data class PendingParticipantsState(
val pendingParticipantCollection: PendingParticipantCollection,
val isInPipMode: Boolean
)