diff options
author | fiaxh <git@lightrise.org> | 2020-04-29 21:31:23 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2020-06-03 21:50:40 +0200 |
commit | 71be2abb6a007fd9b4ed3164d70f5cb95d49ce69 (patch) | |
tree | f4dcdb63e08ce6dc0e4933e30e18cec27c604719 /main/src | |
parent | b5066e0e2f4b482204f43402c797d8bf9f7ef582 (diff) | |
download | dino-71be2abb6a007fd9b4ed3164d70f5cb95d49ce69.tar.gz dino-71be2abb6a007fd9b4ed3164d70f5cb95d49ce69.zip |
Store last read content item for conversations
fixes #495
Diffstat (limited to 'main/src')
-rw-r--r-- | main/src/ui/conversation_selector/conversation_selector_row.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/conversation_selector/conversation_selector_row.vala b/main/src/ui/conversation_selector/conversation_selector_row.vala index 09de3c80..a5148a8f 100644 --- a/main/src/ui/conversation_selector/conversation_selector_row.vala +++ b/main/src/ui/conversation_selector/conversation_selector_row.vala @@ -98,7 +98,7 @@ public class ConversationSelectorRow : ListBoxRow { stream_interactor.get_module(ConversationManager.IDENTITY).close_conversation(conversation); }); image.set_conversation(stream_interactor, conversation); - conversation.notify["read-up-to"].connect(update_read); + conversation.notify["read-up-to-item"].connect(update_read); update_name_label(); content_item_received(); |