diff --git a/src/mainview/components/CallStackView.qml b/src/mainview/components/CallStackView.qml index 38301eec..e265e605 100644 --- a/src/mainview/components/CallStackView.qml +++ b/src/mainview/components/CallStackView.qml @@ -187,6 +187,7 @@ Rectangle { property bool isFullscreen: false onNeedToShowInFullScreen: { + isFullscreen = !isFullscreen VideoCallFullScreenWindowContainerCreation.createvideoCallFullScreenWindowContainerObject() diff --git a/src/mainview/components/IncomingCallPage.qml b/src/mainview/components/IncomingCallPage.qml index 3518d712..d70ee89e 100644 --- a/src/mainview/components/IncomingCallPage.qml +++ b/src/mainview/components/IncomingCallPage.qml @@ -44,7 +44,8 @@ Rectangle { MouseArea { anchors.fill: parent propagateComposedEvents: false - acceptedButtons: Qt.RightButton + acceptedButtons: Qt.AllButtons + onDoubleClicked: mouse.accepted = true } ColumnLayout { diff --git a/src/mainview/components/OutgoingCallPage.qml b/src/mainview/components/OutgoingCallPage.qml index 457f8f40..59b38589 100644 --- a/src/mainview/components/OutgoingCallPage.qml +++ b/src/mainview/components/OutgoingCallPage.qml @@ -44,7 +44,8 @@ Rectangle { MouseArea { anchors.fill: parent propagateComposedEvents: false - acceptedButtons: Qt.RightButton + acceptedButtons: Qt.AllButtons + onDoubleClicked: mouse.accepted = true } ColumnLayout {