diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-08-18 00:59:06 +0800 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-08-18 02:39:24 +0800 |
commit | 8362ce9f550adecdbb48391dc7a342f3cdd2ad13 (patch) | |
tree | b3b176148b23b956eead324296b82f5e24f3d71e /libempathy-gtk | |
parent | 9e050b87711ad401c2a19b0c59fbe4ed0a4bd325 (diff) | |
download | gsoc2013-empathy-8362ce9f550adecdbb48391dc7a342f3cdd2ad13.tar gsoc2013-empathy-8362ce9f550adecdbb48391dc7a342f3cdd2ad13.tar.gz gsoc2013-empathy-8362ce9f550adecdbb48391dc7a342f3cdd2ad13.tar.bz2 gsoc2013-empathy-8362ce9f550adecdbb48391dc7a342f3cdd2ad13.tar.lz gsoc2013-empathy-8362ce9f550adecdbb48391dc7a342f3cdd2ad13.tar.xz gsoc2013-empathy-8362ce9f550adecdbb48391dc7a342f3cdd2ad13.tar.zst gsoc2013-empathy-8362ce9f550adecdbb48391dc7a342f3cdd2ad13.zip |
Don't recursively expand contact list rows unnecessarily
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-individual-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-individual-view.c b/libempathy-gtk/empathy-individual-view.c index 05ca7aced..e3d5fa301 100644 --- a/libempathy-gtk/empathy-individual-view.c +++ b/libempathy-gtk/empathy-individual-view.c @@ -1319,7 +1319,7 @@ individual_view_expand_idle_cb (gpointer user_data) GINT_TO_POINTER (data->expand)); if (data->expand) - gtk_tree_view_expand_row (GTK_TREE_VIEW (data->view), path, TRUE); + gtk_tree_view_expand_row (GTK_TREE_VIEW (data->view), path, FALSE); else gtk_tree_view_collapse_row (GTK_TREE_VIEW (data->view), path); |