1 files changed, 3 insertions, 1 deletions
diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml
index 8145e5e5..f0a83a24 100644
--- a/resources/qml/Root.qml
+++ b/resources/qml/Root.qml
@@ -348,7 +348,9 @@ Pane {
buttons: Platform.MessageDialog.Ok
text: qsTr("Wait for the confirmation link to arrive, then continue.")
- onAccepted: UIA.continue3pidReceived()
+ // Broken on macos, see https://bugreports.qt.io/browse/QTBUG-102078
+ //onAccepted: UIA.continue3pidReceived()
+ onOkClicked: UIA.continue3pidReceived()
}
Connections {
function onConfirm3pidToken() {
|