aboutsummaryrefslogtreecommitdiff
path: root/qml/ChatPage.qml
diff options
context:
space:
mode:
authorMiquel Lionel <lionel@les-miquelots.net>2022-02-06 20:42:01 +0100
committerMiquel Lionel <lionel@les-miquelots.net>2022-02-06 20:57:27 +0100
commitd5ad7202ea77e8a512073f9ce09b6c07e37d6305 (patch)
tree167141728086401a50a125a20997b61df41a2d2e /qml/ChatPage.qml
parenta01f8091c01889d7ca90938f56ae176a74da5590 (diff)
downloadkdeltachat-d5ad7202ea77e8a512073f9ce09b6c07e37d6305.tar.gz
kdeltachat-d5ad7202ea77e8a512073f9ce09b6c07e37d6305.zip
Move notifications to own header file
- also make a skel for files in /usr/, useful for sounds and notifyrc - build.sh use plain simple cp -r to copy the skel. also copies the knotifications5 in the current directory for qml.qrc embedding in case the app is used on android.
Diffstat (limited to 'qml/ChatPage.qml')
-rw-r--r--qml/ChatPage.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/qml/ChatPage.qml b/qml/ChatPage.qml
index 667e01d..a82e0f6 100644
--- a/qml/ChatPage.qml
+++ b/qml/ChatPage.qml
@@ -57,7 +57,7 @@ Kirigami.ScrollablePage {
updateMessagelist();
console.log("Incoming message for chat " + chatId);
if(!chat.muted || chatId != 0 || chatId != root.chatId)
- chat.notifyNewMess();
+ KNotif.send("onIncomingMessage",chat.getProfileImage() ,chat.name ,"has sent you a message.")
}
function onMessagesChanged(accountId, chatId, msgId) {