aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPierre-Luc Beaudoin <pierre-luc@pierlux.com>2009-05-11 13:00:34 +0800
committerPierre-Luc Beaudoin <pierre-luc@pierlux.com>2009-05-28 00:52:05 +0800
commit29a6e9ff7d6b775be67d81c5ce8a5631164a51e3 (patch)
treefc7ffbb93bd259ea0a9a151011ef939e91f3a2ad /src
parentc387d97d12f788291974da01c315fa87eb5f8b51 (diff)
downloadgsoc2013-empathy-29a6e9ff7d6b775be67d81c5ce8a5631164a51e3.tar
gsoc2013-empathy-29a6e9ff7d6b775be67d81c5ce8a5631164a51e3.tar.gz
gsoc2013-empathy-29a6e9ff7d6b775be67d81c5ce8a5631164a51e3.tar.bz2
gsoc2013-empathy-29a6e9ff7d6b775be67d81c5ce8a5631164a51e3.tar.lz
gsoc2013-empathy-29a6e9ff7d6b775be67d81c5ce8a5631164a51e3.tar.xz
gsoc2013-empathy-29a6e9ff7d6b775be67d81c5ce8a5631164a51e3.tar.zst
gsoc2013-empathy-29a6e9ff7d6b775be67d81c5ce8a5631164a51e3.zip
Fix contacts not showing on the map
Diffstat (limited to 'src')
-rw-r--r--src/empathy-map-view.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-map-view.c b/src/empathy-map-view.c
index 0e7820325..c6affb409 100644
--- a/src/empathy-map-view.c
+++ b/src/empathy-map-view.c
@@ -123,6 +123,8 @@ empathy_map_view_show ()
list_iface = EMPATHY_CONTACT_LIST (empathy_contact_manager_dup_singleton ());
list_store = empathy_contact_list_store_new (list_iface);
+ empathy_contact_list_store_set_show_groups (list_store, FALSE);
+ empathy_contact_list_store_set_show_avatars (list_store, TRUE);
g_object_unref (list_iface);
window->list_store = list_store;
@@ -321,7 +323,6 @@ map_view_contacts_foreach (GtkTreeModel *model,
g_object_set_data (G_OBJECT (contact), "map-view-handle",
GINT_TO_POINTER (handle_id));
- clutter_container_add (CLUTTER_CONTAINER (marker), texture, NULL);
clutter_actor_set_anchor_point (marker, 16, 16);
avatar = empathy_pixbuf_avatar_from_contact_scaled (contact, 32, 32);