diff options
-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> |