aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/conversation_content_view/conversation_view.vala
diff options
context:
space:
mode:
authorfiaxh <git@lightrise.org>2020-03-26 15:27:48 +0100
committerfiaxh <git@lightrise.org>2020-03-26 15:27:48 +0100
commit1fd045236bb5d49d5d7ea82b76ff2f88463d7c7f (patch)
treeb659d71596e86658bce1c5a68743e28d0c3a93c1 /main/src/ui/conversation_content_view/conversation_view.vala
parent5a98d2919b55777a708e36a6994041814024a81a (diff)
downloaddino-1fd045236bb5d49d5d7ea82b76ff2f88463d7c7f.tar.gz
dino-1fd045236bb5d49d5d7ea82b76ff2f88463d7c7f.zip
Update time labels in conversation view at the moment they actually change
Diffstat (limited to 'main/src/ui/conversation_content_view/conversation_view.vala')
-rw-r--r--main/src/ui/conversation_content_view/conversation_view.vala7
1 files changed, 0 insertions, 7 deletions
diff --git a/main/src/ui/conversation_content_view/conversation_view.vala b/main/src/ui/conversation_content_view/conversation_view.vala
index 83d08fb3..c68ee5de 100644
--- a/main/src/ui/conversation_content_view/conversation_view.vala
+++ b/main/src/ui/conversation_content_view/conversation_view.vala
@@ -60,13 +60,6 @@ public class ConversationView : Box, Plugins.ConversationItemCollection, Plugins
app.plugin_registry.register_conversation_addition_populator(new ChatStatePopulator(stream_interactor));
app.plugin_registry.register_conversation_addition_populator(new DateSeparatorPopulator(stream_interactor));
- Timeout.add_seconds(60, () => {
- foreach (ConversationItemSkeleton item_skeleton in item_skeletons) {
- item_skeleton.update_time();
- }
- return true;
- });
-
main_wrap_event_box.events = EventMask.ENTER_NOTIFY_MASK;
main_wrap_event_box.events = EventMask.LEAVE_NOTIFY_MASK;
main_wrap_event_box.leave_notify_event.connect(on_leave_notify_event);