diff options
author | link2xt <link2xt@testrun.org> | 2021-02-22 02:05:31 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-02-22 02:05:31 +0300 |
commit | 8f776c9340e7bd68e90b5ef66577eb007ef9b736 (patch) | |
tree | 0d93ad6c09e9e738819bc58699ab6fdb9ca5aa30 /qml/Message.qml | |
parent | f9fde8e2aed4d0e871e613f694282a24fef7c9dd (diff) | |
download | kdeltachat-8f776c9340e7bd68e90b5ef66577eb007ef9b736.tar.gz kdeltachat-8f776c9340e7bd68e90b5ef66577eb007ef9b736.zip |
Add context menu item to accept contact requests
Diffstat (limited to 'qml/Message.qml')
-rw-r--r-- | qml/Message.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qml/Message.qml b/qml/Message.qml index ae10dcd..a217bc8 100644 --- a/qml/Message.qml +++ b/qml/Message.qml @@ -85,6 +85,10 @@ RowLayout { text: "Info" onTriggered: messageDialog.open() } + Action { + text: "Start chat" + onTriggered: context.decideOnContactRequest(message.id, 0) + } } } |