# HG changeset patch # User Stu Tomlinson # Date 1180811128 0 # Node ID 98f27c7f0ef59eb1d365c8a1d0d95e35738fb0e3 # Parent fe5a89474e6d56e29b327df67da2bded240735f2 We also need to reverse the last protocol's smiley list instead of only lists that have another protocol after them in the theme file diff -r fe5a89474e6d -r 98f27c7f0ef5 pidgin/gtkthemes.c --- a/pidgin/gtkthemes.c Sat Jun 02 18:46:34 2007 +0000 +++ b/pidgin/gtkthemes.c Sat Jun 02 19:05:28 2007 +0000 @@ -210,6 +210,10 @@ } } + /* Reverse the Smiley list since it was built in reverse order for efficiency reasons */ + if (list != NULL) + list->smileys = g_slist_reverse(list->smileys); + g_free(dirname); fclose(f);