From 10e8a1db58a46d9d9986a7c46cd38c633fd9b74e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Sat, 12 Jun 2021 17:15:17 +0200 Subject: [PATCH] Allow fullscreening in all call types MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/components/views/voip/CallView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/voip/CallView.tsx b/src/components/views/voip/CallView.tsx index 5134425201..925141883d 100644 --- a/src/components/views/voip/CallView.tsx +++ b/src/components/views/voip/CallView.tsx @@ -728,7 +728,7 @@ export default class CallView extends React.Component { let myClassName; let fullScreenButton; - if (this.props.call.type === CallType.Video && !this.props.pipMode) { + if (!this.props.pipMode) { fullScreenButton =
;