diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-07-13 20:48:44 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-07-13 20:48:44 +0800 |
commit | 3d8a07ffe7cdf6c929abf991eaaf8fe1370e6f5d (patch) | |
tree | 7b989195121a19c8e16791571ef217b78881aae9 /libempathy-gtk/empathy-contact-widget.c | |
parent | 4b461d83b002421157a01cf8081b735af162cd13 (diff) | |
download | gsoc2013-empathy-3d8a07ffe7cdf6c929abf991eaaf8fe1370e6f5d.tar gsoc2013-empathy-3d8a07ffe7cdf6c929abf991eaaf8fe1370e6f5d.tar.gz gsoc2013-empathy-3d8a07ffe7cdf6c929abf991eaaf8fe1370e6f5d.tar.bz2 gsoc2013-empathy-3d8a07ffe7cdf6c929abf991eaaf8fe1370e6f5d.tar.lz gsoc2013-empathy-3d8a07ffe7cdf6c929abf991eaaf8fe1370e6f5d.tar.xz gsoc2013-empathy-3d8a07ffe7cdf6c929abf991eaaf8fe1370e6f5d.tar.zst gsoc2013-empathy-3d8a07ffe7cdf6c929abf991eaaf8fe1370e6f5d.zip |
Remove unused nickname entry and use a GtkTable for room information. More
2007-07-13 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-new-chatroom-dialog.c:
* libempathy-gtk/empathy-new-chatroom-dialog.glade: Remove unused
nickname entry and use a GtkTable for room information. More work is
needed here.
* libempathy-gtk/empathy-contact-widget.glade: Change padding to 6.
* libempathy-gtk/empathy-contact-dialogs.c: Set a window title.
* libempathy-gtk/empathy-contact-widget.c: Fix alignment of widgets.
* libempathy/empathy-tp-contact-list.c: Add more debug msg for avatar
handling.
svn path=/trunk/; revision=184
Diffstat (limited to 'libempathy-gtk/empathy-contact-widget.c')
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index 2f56a6e50..617a7d62d 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -290,6 +290,7 @@ contact_widget_contact_setup (EmpathyContactWidget *information) information->widget_account, 1, 2, 0, 1); gtk_widget_show (information->widget_account); + gtk_misc_set_alignment (GTK_MISC (information->widget_account), 0, 0.5); /* Setup id label/entry */ if (information->can_change_contact) { @@ -305,6 +306,7 @@ contact_widget_contact_setup (EmpathyContactWidget *information) information->widget_id, 1, 2, 1, 2); gtk_widget_show (information->widget_id); + gtk_misc_set_alignment (GTK_MISC (information->widget_id), 0, 0.5); /* Setup alias label/entry */ if (information->editable) { @@ -320,6 +322,7 @@ contact_widget_contact_setup (EmpathyContactWidget *information) information->widget_alias, 1, 2, 2, 3); gtk_widget_show (information->widget_alias); + gtk_misc_set_alignment (GTK_MISC (information->widget_alias), 0, 0.5); } static void |