Mercurial > pidgin
changeset 32203:64793e55488e
Add the "default" theme to the beginning of the conversation
theme preferences.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Wed, 21 Sep 2011 21:37:37 +0000 |
parents | afd256914830 |
children | cd2254bf8fa9 7b6ab83622db |
files | pidgin/gtkprefs.c |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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);