From f80620f900f8c792a197b9ceaf4f5506726a00d8 Mon Sep 17 00:00:00 2001 From: Christophe Deschamps Date: Tue, 1 Oct 2024 09:12:34 +0200 Subject: [PATCH] Wire keypad buttons signal - call & wipe --- Linphone/view/Control/Popup/NumericPadPopup.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Linphone/view/Control/Popup/NumericPadPopup.qml b/Linphone/view/Control/Popup/NumericPadPopup.qml index b769a468..1fa92412 100644 --- a/Linphone/view/Control/Popup/NumericPadPopup.qml +++ b/Linphone/view/Control/Popup/NumericPadPopup.qml @@ -76,6 +76,9 @@ Control.Popup { anchors.leftMargin: 72 * DefaultStyle.dp onButtonPressed: (text) => { console.log("BUTTON PRESSED NUMPAD") - mainItem.buttonPressed(text)} + mainItem.buttonPressed(text) + } + onLaunchCall: mainItem.launchCall() + onWipe: mainItem.wipe() } }