Display overflow button with reactions OR raise hand.

This commit is contained in:
Nicholas Tinsley 2024-01-19 13:55:45 -05:00 committed by Greyson Parrelli
parent d17f12dd76
commit 595cced5b7

View file

@ -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() {