Merge pull request #808 from vector-im/dbkr/remove_overflow_fullscreen

Remove the overflow menu button in fullscreen mode
This commit is contained in:
David Baker
2022-12-22 13:28:14 +00:00
committed by GitHub

View File

@@ -377,14 +377,16 @@ export function InCallView({
onPress={toggleScreensharing} onPress={toggleScreensharing}
/> />
)} )}
<OverflowMenu {!maximisedParticipant && (
inCall <OverflowMenu
roomIdOrAlias={roomIdOrAlias} inCall
groupCall={groupCall} roomIdOrAlias={roomIdOrAlias}
showInvite={joinRule === JoinRule.Public} groupCall={groupCall}
feedbackModalState={feedbackModalState} showInvite={joinRule === JoinRule.Public}
feedbackModalProps={feedbackModalProps} feedbackModalState={feedbackModalState}
/> feedbackModalProps={feedbackModalProps}
/>
)}
<HangupButton onPress={onLeave} /> <HangupButton onPress={onLeave} />
</div> </div>
); );