diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-03-14 19:17:18 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-03-16 17:30:32 +0800 |
commit | ee98d8feb897a7151542cc3998a7e73c86ef86a7 (patch) | |
tree | 86f508f3a61cca0583498e64b65d342439405c95 | |
parent | 98648871225823cf7ddc11a746185fe9007d6936 (diff) | |
download | gsoc2013-empathy-ee98d8feb897a7151542cc3998a7e73c86ef86a7.tar gsoc2013-empathy-ee98d8feb897a7151542cc3998a7e73c86ef86a7.tar.gz gsoc2013-empathy-ee98d8feb897a7151542cc3998a7e73c86ef86a7.tar.bz2 gsoc2013-empathy-ee98d8feb897a7151542cc3998a7e73c86ef86a7.tar.lz gsoc2013-empathy-ee98d8feb897a7151542cc3998a7e73c86ef86a7.tar.xz gsoc2013-empathy-ee98d8feb897a7151542cc3998a7e73c86ef86a7.tar.zst gsoc2013-empathy-ee98d8feb897a7151542cc3998a7e73c86ef86a7.zip |
contact-widget: right align contact info fields
https://bugzilla.gnome.org/show_bug.cgi?id=672037
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.c | 2 | ||||
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.ui | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index e44772a72..90cb31f43 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -421,7 +421,7 @@ contact_widget_details_update_edit (EmpathyContactWidget *information) gtk_grid_attach (GTK_GRID (information->grid_details), w, 0, n_rows, 1, 1); - gtk_misc_set_alignment (GTK_MISC (w), 0, 0.5); + gtk_misc_set_alignment (GTK_MISC (w), 1, 0.5); gtk_widget_show (w); /* Add Value */ diff --git a/libempathy-gtk/empathy-contact-widget.ui b/libempathy-gtk/empathy-contact-widget.ui index c6cb7a5ca..0954ac7d3 100644 --- a/libempathy-gtk/empathy-contact-widget.ui +++ b/libempathy-gtk/empathy-contact-widget.ui @@ -12,7 +12,7 @@ <child> <object class="GtkLabel" id="label_left_account"> <property name="visible">True</property> - <property name="xalign">0</property> + <property name="xalign">1</property> <property name="label" translatable="yes">Account:</property> </object> <packing> @@ -21,7 +21,7 @@ <child> <object class="GtkLabel" id="label655"> <property name="visible">True</property> - <property name="xalign">0</property> + <property name="xalign">1</property> <property name="label" translatable="yes" comments="Identifier to connect to Instant Messaging network">Identifier:</property> </object> <packing> @@ -32,7 +32,7 @@ <child> <object class="GtkLabel" id="label_alias"> <property name="visible">True</property> - <property name="xalign">0</property> + <property name="xalign">1</property> <property name="label" translatable="yes">Alias:</property> </object> <packing> @@ -258,7 +258,7 @@ <child> <object class="GtkLabel" id="label668"> <property name="visible">True</property> - <property name="xalign">0</property> + <property name="xalign">1</property> <property name="yalign">0</property> <property name="label" translatable="yes">OS:</property> </object> @@ -269,7 +269,7 @@ <child> <object class="GtkLabel" id="label667"> <property name="visible">True</property> - <property name="xalign">0</property> + <property name="xalign">1</property> <property name="yalign">0</property> <property name="label" translatable="yes">Version:</property> </object> @@ -280,7 +280,7 @@ <child> <object class="GtkLabel" id="label666"> <property name="visible">True</property> - <property name="xalign">0</property> + <property name="xalign">1</property> <property name="yalign">0</property> <property name="label" translatable="yes">Client:</property> </object> |