# HG changeset patch # User Elliott Sales de Andrade # Date 1316641057 0 # Node ID 64793e55488e8a0fd05d999cbbe93b4dc7bbb78d # Parent afd2569148301b7d80b82f02c20754bef96fdbb5 Add the "default" theme to the beginning of the conversation theme preferences. diff -r afd256914830 -r 64793e55488e pidgin/gtkprefs.c --- a/pidgin/gtkprefs.c Wed Sep 21 21:10:14 2011 +0000 +++ b/pidgin/gtkprefs.c Wed Sep 21 21:37:37 2011 +0000 @@ -573,6 +573,11 @@ /* conversation themes */ gtk_list_store_clear(prefs_conv_themes); + gtk_list_store_append(prefs_conv_themes, &iter); + tmp = get_theme_markup(_("Default"), FALSE, _("Penguin Pimps"), + _("The default Pidgin conversation theme")); + gtk_list_store_set(prefs_conv_themes, &iter, 0, pixbuf, 1, tmp, 2, "", -1); + g_free(tmp); /* status icon themes */ gtk_list_store_clear(prefs_status_icon_themes);