diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-09-22 20:36:04 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-09-26 17:55:09 +0800 |
commit | 09ccdc338176ede800dc7891129356e7232eb7d9 (patch) | |
tree | 1a83fced8af028d1fc0c656c0c44821429010487 /libempathy-gtk | |
parent | 55ae021ffe4105298ea910958bb3fff0bd359a91 (diff) | |
download | gsoc2013-empathy-09ccdc338176ede800dc7891129356e7232eb7d9.tar gsoc2013-empathy-09ccdc338176ede800dc7891129356e7232eb7d9.tar.gz gsoc2013-empathy-09ccdc338176ede800dc7891129356e7232eb7d9.tar.bz2 gsoc2013-empathy-09ccdc338176ede800dc7891129356e7232eb7d9.tar.lz gsoc2013-empathy-09ccdc338176ede800dc7891129356e7232eb7d9.tar.xz gsoc2013-empathy-09ccdc338176ede800dc7891129356e7232eb7d9.tar.zst gsoc2013-empathy-09ccdc338176ede800dc7891129356e7232eb7d9.zip |
contact-widget: left align status label
It's already done that way in individual-widget.
https://bugzilla.gnome.org/show_bug.cgi?id=659816
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index b9c17687c..6c021c3ee 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -1750,6 +1750,7 @@ contact_widget_contact_setup (EmpathyContactWidget *information) PANGO_WRAP_WORD_CHAR); gtk_label_set_line_wrap (GTK_LABEL (information->label_status), TRUE); + gtk_misc_set_alignment (GTK_MISC (information->label_status), 0, 0.5); if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) gtk_label_set_selectable (GTK_LABEL (information->label_status), TRUE); |