From: <rl...@us...> - 2006-10-26 06:20:22
|
Revision: 17587 http://svn.sourceforge.net/gaim/?rev=17587&view=rev Author: rlaager Date: 2006-10-25 23:20:18 -0700 (Wed, 25 Oct 2006) Log Message: ----------- SF Patch #1579670 from Richard Nelson (wabz) "Choosing to show/hide empty groups does nothing. This patch rectifies, hopefully in the correct way." Modified Paths: -------------- trunk/gtk/gtkblist.c Modified: trunk/gtk/gtkblist.c =================================================================== --- trunk/gtk/gtkblist.c 2006-10-26 06:18:51 UTC (rev 17586) +++ trunk/gtk/gtkblist.c 2006-10-26 06:20:18 UTC (rev 17587) @@ -4191,6 +4191,8 @@ gaim_gtk_blist_update_buddy(list, node, rerender); else if (GAIM_BLIST_NODE_IS_CHAT(node)) gaim_gtk_blist_update(list, node); + else if (GAIM_BLIST_NODE_IS_GROUP(node)) + gaim_gtk_blist_update(list, node); node = gaim_blist_node_next(node, FALSE); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |