# HG changeset patch # User John Bailey # Date 1254622522 0 # Node ID 20b7a51166c36890b791a3982a433b071e4233fd # Parent 542b75da206e3d330c840539d00ff1efe9ee3816 Allow a user to use gtkrc to style the userlist in chat windows. I don't think this to be all that unreasonable of a request. Fixes #9377. diff -r 542b75da206e -r 20b7a51166c3 pidgin/gtkconv.c --- a/pidgin/gtkconv.c Sat Oct 03 21:30:52 2009 +0000 +++ b/pidgin/gtkconv.c Sun Oct 04 02:15:22 2009 +0000 @@ -4812,6 +4812,9 @@ list = gtk_tree_view_new_with_model(GTK_TREE_MODEL(ls)); + /* Allow a user to specify gtkrc settings for the chat userlist only */ + gtk_widget_set_name(list, "pidgin_conv_userlist"); + rend = gtk_cell_renderer_pixbuf_new(); g_object_set(G_OBJECT(rend), "stock-size", gtk_icon_size_from_name(PIDGIN_ICON_SIZE_TANGO_EXTRA_SMALL),