mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-21 14:34:30 +00:00
Fix placeholder being shown on startup, fix missing vertical line in no-conversations placeholder
This commit is contained in:
parent
3aa3912dc3
commit
e0ece2aa62
3 changed files with 4 additions and 5 deletions
|
@ -63,10 +63,7 @@ public interface Application : GLib.Application {
|
|||
|
||||
startup.connect(() => {
|
||||
stream_interactor.connection_manager.log_options = print_xmpp;
|
||||
Idle.add(() => {
|
||||
restore();
|
||||
return false;
|
||||
});
|
||||
restore();
|
||||
});
|
||||
shutdown.connect(() => {
|
||||
stream_interactor.connection_manager.make_offline_all();
|
||||
|
|
|
@ -8,6 +8,9 @@
|
|||
<child>
|
||||
<object class="GtkBox" id="left_box">
|
||||
<property name="orientation">vertical</property>
|
||||
<style>
|
||||
<class name="sidebar"/>
|
||||
</style>
|
||||
<child>
|
||||
<object class="GtkStack" id="left_stack">
|
||||
<property name="hexpand">False</property>
|
||||
|
|
|
@ -37,7 +37,6 @@ public class ConversationSelector : Widget {
|
|||
}
|
||||
|
||||
construct {
|
||||
add_css_class("sidebar");
|
||||
list_box.set_sort_func(sort);
|
||||
|
||||
realize.connect(() => {
|
||||
|
|
Loading…
Reference in a new issue