diff --git a/smsapp/qml/ConversationList.qml b/smsapp/qml/ConversationList.qml index c3ec8967a..0ad5661c7 100644 --- a/smsapp/qml/ConversationList.qml +++ b/smsapp/qml/ConversationList.qml @@ -163,7 +163,7 @@ Kirigami.ScrollablePage Shortcut { sequence: "Ctrl+N" - onActivated: newButton.onClicked() + onActivated: newButton.clicked() } } } diff --git a/smsapp/qml/SendingArea.qml b/smsapp/qml/SendingArea.qml index 119bb4acb..63a3697f8 100644 --- a/smsapp/qml/SendingArea.qml +++ b/smsapp/qml/SendingArea.qml @@ -88,7 +88,7 @@ ColumnLayout { if (event.modifiers & Qt.ShiftModifier) { messageField.append("") } else { - sendButton.onClicked() + sendButton.clicked() event.accepted = true } }