diff options
author | Felix Kaser <f.kaser@gmx.net> | 2009-12-03 06:11:51 +0800 |
---|---|---|
committer | Felix Kaser <f.kaser@gmx.net> | 2009-12-15 20:52:43 +0800 |
commit | 1a85521a5acf30995d71b86d733ef56c17e619e6 (patch) | |
tree | 0907369c851aafa312d24e89664db215ffb549bc | |
parent | b2f25f9f70969bf3d872780becb4f73137c268d1 (diff) | |
download | gsoc2013-empathy-1a85521a5acf30995d71b86d733ef56c17e619e6.tar gsoc2013-empathy-1a85521a5acf30995d71b86d733ef56c17e619e6.tar.gz gsoc2013-empathy-1a85521a5acf30995d71b86d733ef56c17e619e6.tar.bz2 gsoc2013-empathy-1a85521a5acf30995d71b86d733ef56c17e619e6.tar.lz gsoc2013-empathy-1a85521a5acf30995d71b86d733ef56c17e619e6.tar.xz gsoc2013-empathy-1a85521a5acf30995d71b86d733ef56c17e619e6.tar.zst gsoc2013-empathy-1a85521a5acf30995d71b86d733ef56c17e619e6.zip |
added vbox for the status-infobar
the vbox should hold the infobar which shows the connection status in accounts-dialog
-rw-r--r-- | src/empathy-accounts-dialog.c | 2 | ||||
-rw-r--r-- | src/empathy-accounts-dialog.ui | 26 |
2 files changed, 21 insertions, 7 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index ec410050b..c89f99827 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -77,6 +77,7 @@ typedef struct { GtkWidget *alignment_settings; GtkWidget *vbox_details; + GtkWidget *vbox_name; GtkWidget *frame_no_protocol; GtkWidget *treeview; @@ -1559,6 +1560,7 @@ accounts_dialog_build_ui (EmpathyAccountsDialog *dialog) gui = empathy_builder_get_file (filename, "accounts_dialog", &priv->window, "vbox_details", &priv->vbox_details, + "vbox_name", &priv->vbox_name, "frame_no_protocol", &priv->frame_no_protocol, "alignment_settings", &priv->alignment_settings, "treeview", &priv->treeview, diff --git a/src/empathy-accounts-dialog.ui b/src/empathy-accounts-dialog.ui index bcc909fb9..86f5e3292 100644 --- a/src/empathy-accounts-dialog.ui +++ b/src/empathy-accounts-dialog.ui @@ -99,14 +99,26 @@ <property name="visible">True</property> <property name="spacing">6</property> <child> - <object class="GtkLabel" id="label_name"> + <object class="GtkVBox" id="vbox_name"> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="selectable">True</property> - <attributes> - <attribute name="weight" value="bold"/> - <attribute name="scale" value="1.200000"/> - </attributes> + <property name="orientation">vertical</property> + <child> + <object class="GtkLabel" id="label_name"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="selectable">True</property> + <attributes> + <attribute name="weight" value="bold"/> + <attribute name="scale" value="1.200000"/> + </attributes> + </object> + <packing> + <property name="position">0</property> + </packing> + </child> + <child> + <placeholder/> + </child> </object> <packing> <property name="position">0</property> |