From: Rob F. <rob...@us...> - 2001-10-20 18:30:23
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv15773/src Modified Files: dialogs.c Log Message: Fixed a bug that causes the group list to not be updated when you change accounts (on the add buddy dialog) [reported by espectro] Index: dialogs.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/dialogs.c,v retrieving revision 1.264 retrieving revision 1.265 diff -u -d -r1.264 -r1.265 --- dialogs.c 2001/10/19 20:31:40 1.264 +++ dialogs.c 2001/10/20 18:30:20 1.265 @@ -816,7 +816,11 @@ { struct addbuddy *b = gtk_object_get_user_data(w); + /* Save our account */ b->gc = gc; + + /* We also want to update our group list */ + gtk_combo_set_popdown_strings(GTK_COMBO(b->combo), groups_tree(gc ? gc : connections->data)); } static void create_online_user_names(struct addbuddy *b) |