From c9e40bd6af961453ba8281e7e72340308ad722a6 Mon Sep 17 00:00:00 2001 From: Christophe Deschamps Date: Fri, 24 Jan 2025 15:29:21 +0100 Subject: [PATCH] Dismiss Start Call Popup after choice is made --- Linphone/view/Page/Window/AbstractWindow.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/Linphone/view/Page/Window/AbstractWindow.qml b/Linphone/view/Page/Window/AbstractWindow.qml index 9b1b472c..e8fcb319 100644 --- a/Linphone/view/Page/Window/AbstractWindow.qml +++ b/Linphone/view/Page/Window/AbstractWindow.qml @@ -137,6 +137,7 @@ ApplicationWindow { onClicked: { if (startCallPopup.currentCall) startCallPopup.currentCall.core.lTransferCall(modelData.address) else UtilsCpp.createCall(modelData.address, {'localVideoEnabled': startCallPopup.videoEnabled}) + startCallPopup.close() } } }