diff options
author | link2xt <link2xt@testrun.org> | 2021-06-06 17:29:27 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-06-06 17:29:27 +0300 |
commit | 673447241e20dff4bfe7ddb13805a5bd6e47a5ce (patch) | |
tree | a6f74c501738938f78ec0fab470c205baf80a187 /qml/ChatlistPage.qml | |
parent | 3d2729ea467bf59bfed1522f17bf53841d140640 (diff) | |
download | kdeltachat-673447241e20dff4bfe7ddb13805a5bd6e47a5ce.tar.gz kdeltachat-673447241e20dff4bfe7ddb13805a5bd6e47a5ce.zip |
Allow to open deaddrop chat, but do not mark it as seen or noticed
Diffstat (limited to 'qml/ChatlistPage.qml')
-rw-r--r-- | qml/ChatlistPage.qml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/qml/ChatlistPage.qml b/qml/ChatlistPage.qml index 5390baa..5da4d25 100644 --- a/qml/ChatlistPage.qml +++ b/qml/ChatlistPage.qml @@ -113,10 +113,12 @@ Kirigami.ScrollablePage { var chatId = chatlistModel.get(chatlist.currentIndex).chatId - if (chatId > 9) { - // > DC_CHAT_ID_LAST_SPECIAL + if (chatId == 1 || chatId > 9) { + // chatId == DC_CHAT_ID_DEADDROP || chatId > DC_CHAT_ID_LAST_SPECIAL - chatlistPage.context.marknoticedChat(chatId) + if (chatId != 1) { + chatlistPage.context.marknoticedChat(chatId) + } console.log("Selected chat " + chatId) |