diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-07-14 14:44:17 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-07-14 14:44:17 +0800 |
commit | 2e19a47b4c79dc3aa46829699b43f15ddb42e422 (patch) | |
tree | 58b52bb78686535788e7ca566de3d4c6aa0844de | |
parent | 910d62fbaf0883abb0a4cd6e891729e6f02a230f (diff) | |
download | gsoc2013-empathy-2e19a47b4c79dc3aa46829699b43f15ddb42e422.tar gsoc2013-empathy-2e19a47b4c79dc3aa46829699b43f15ddb42e422.tar.gz gsoc2013-empathy-2e19a47b4c79dc3aa46829699b43f15ddb42e422.tar.bz2 gsoc2013-empathy-2e19a47b4c79dc3aa46829699b43f15ddb42e422.tar.lz gsoc2013-empathy-2e19a47b4c79dc3aa46829699b43f15ddb42e422.tar.xz gsoc2013-empathy-2e19a47b4c79dc3aa46829699b43f15ddb42e422.tar.zst gsoc2013-empathy-2e19a47b4c79dc3aa46829699b43f15ddb42e422.zip |
Show avatars by default.
2007-07-14 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-contact-list-store.c: Show avatars by default.
svn path=/trunk/; revision=188
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | libempathy-gtk/empathy-contact-list-store.c | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2007-07-14 Xavier Claessens <xclaesse@gmail.com> + + * libempathy-gtk/empathy-contact-list-store.c: Show avatars by default. + 2007-07-13 Xavier Claessens <xclaesse@gmail.com> * libempathy-gtk/empathy-status-icon.c: If there is no pending msg diff --git a/libempathy-gtk/empathy-contact-list-store.c b/libempathy-gtk/empathy-contact-list-store.c index 44ea44830..3b4892e3c 100644 --- a/libempathy-gtk/empathy-contact-list-store.c +++ b/libempathy-gtk/empathy-contact-list-store.c @@ -233,6 +233,7 @@ empathy_contact_list_store_init (EmpathyContactListStore *store) priv = GET_PRIV (store); + priv->show_avatars = TRUE; priv->inhibit_active = g_timeout_add (ACTIVE_USER_WAIT_TO_ENABLE_TIME, (GSourceFunc) contact_list_store_inibit_active_cb, store); |