Remove the overflow menu button in fullscreen mode

It didn't work and fixing it is a bit of a project: see comment

https://github.com/vector-im/element-call/issues/807
This commit is contained in:
David Baker 2022-12-22 12:16:05 +00:00
parent 2c2aded094
commit d7d7bee685

View file

@ -377,6 +377,7 @@ export function InCallView({
onPress={toggleScreensharing} onPress={toggleScreensharing}
/> />
)} )}
{!maximisedParticipant && (
<OverflowMenu <OverflowMenu
inCall inCall
roomIdOrAlias={roomIdOrAlias} roomIdOrAlias={roomIdOrAlias}
@ -385,6 +386,7 @@ export function InCallView({
feedbackModalState={feedbackModalState} feedbackModalState={feedbackModalState}
feedbackModalProps={feedbackModalProps} feedbackModalProps={feedbackModalProps}
/> />
)}
<HangupButton onPress={onLeave} /> <HangupButton onPress={onLeave} />
</div> </div>
); );