mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-23 19:26:17 +00:00
Display overflow button with reactions OR raise hand.
This commit is contained in:
committed by
Greyson Parrelli
parent
d17f12dd76
commit
595cced5b7
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user