diff options
author | bobufa <bobufa@users.noreply.github.com> | 2018-07-04 23:38:28 +0200 |
---|---|---|
committer | bobufa <bobufa@users.noreply.github.com> | 2018-08-13 22:28:45 +0200 |
commit | 8b23ddad2d33a1504cd28c0df583dfe50cadccda (patch) | |
tree | c34829ba57aae1ea9d7291d1e4a91e2cfbd337c1 /main/src/ui/conversation_summary | |
parent | babfc3bd36e0cfa50f06648224f33a6a96eb27ea (diff) | |
download | dino-8b23ddad2d33a1504cd28c0df583dfe50cadccda.tar.gz dino-8b23ddad2d33a1504cd28c0df583dfe50cadccda.zip |
ui: search sidebar initial
Diffstat (limited to 'main/src/ui/conversation_summary')
-rw-r--r-- | main/src/ui/conversation_summary/conversation_view.vala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/ui/conversation_summary/conversation_view.vala b/main/src/ui/conversation_summary/conversation_view.vala index 008909e4..870b6ee3 100644 --- a/main/src/ui/conversation_summary/conversation_view.vala +++ b/main/src/ui/conversation_summary/conversation_view.vala @@ -35,7 +35,7 @@ public class ConversationView : Box, Plugins.ConversationItemCollection { private bool firstLoad = true; private bool at_current_content = true; - public ConversationView(StreamInteractor stream_interactor) { + public ConversationView init(StreamInteractor stream_interactor) { this.stream_interactor = stream_interactor; scrolled.vadjustment.notify["upper"].connect_after(on_upper_notify); scrolled.vadjustment.notify["value"].connect(on_value_notify); @@ -58,6 +58,7 @@ public class ConversationView : Box, Plugins.ConversationItemCollection { }); Util.force_base_background(this); + return this; } // Workaround GTK TextView issues: Delay first load of contents |