Display overflow button with reactions OR raise hand.
This commit is contained in:
parent
d17f12dd76
commit
595cced5b7
1 changed files with 4 additions and 2 deletions
|
@ -101,7 +101,9 @@ public final class WebRtcControls {
|
|||
isCallLink);
|
||||
}
|
||||
|
||||
/** This is only true at the very start of a call and will then never be true again */
|
||||
/**
|
||||
* This is only true at the very start of a call and will then never be true again
|
||||
*/
|
||||
public boolean hideControlsSheetInitially() {
|
||||
return displayIncomingCallButtons() || callState == CallState.NONE;
|
||||
}
|
||||
|
@ -157,7 +159,7 @@ public final class WebRtcControls {
|
|||
}
|
||||
|
||||
public boolean displayOverflow() {
|
||||
return FeatureFlags.groupCallReactions() && isAtLeastOutgoing() && hasAtLeastOneRemote && isGroupCall();
|
||||
return (FeatureFlags.groupCallReactions() || FeatureFlags.groupCallRaiseHand()) && isAtLeastOutgoing() && hasAtLeastOneRemote && isGroupCall();
|
||||
}
|
||||
|
||||
public boolean displayMuteAudio() {
|
||||
|
|
Loading…
Add table
Reference in a new issue