diff options
author | link2xt <link2xt@testrun.org> | 2021-07-04 00:00:00 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-07-04 00:00:00 +0300 |
commit | 9233036f014149b27bb8c1a98870b624d8e6b2b5 (patch) | |
tree | 5856a71d5acf2fc7283fe7c74c8f69eacc1f42c7 | |
parent | 92de31840ed3ec7cc8ec90fe58b1955278a8acff (diff) | |
download | kdeltachat-9233036f014149b27bb8c1a98870b624d8e6b2b5.tar.gz kdeltachat-9233036f014149b27bb8c1a98870b624d8e6b2b5.zip |
Reload chatlist when some chat is modified
-rw-r--r-- | qml/ChatlistPage.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qml/ChatlistPage.qml b/qml/ChatlistPage.qml index 6d1a083..343b8da 100644 --- a/qml/ChatlistPage.qml +++ b/qml/ChatlistPage.qml @@ -26,6 +26,10 @@ Kirigami.ScrollablePage { // Reload chatlist updateChatlist(); } + function onChatModified() { + // Reload chatlist + updateChatlist(); + } } Component.onCompleted: { |