pidgin: 7c389d19: Add the "default" theme to the beginning...

qulogic at pidgin.im qulogic at pidgin.im
Thu Sep 22 03:50:48 EDT 2011


----------------------------------------------------------------------
Revision: 7c389d19c8f8832186d158682adeae992b0fa547
Parent:   99e45113699d6b9dee918ac11cdc124dc6ea5f0b
Author:   qulogic at pidgin.im
Date:     09/21/11 17:37:37
Branch:   im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/7c389d19c8f8832186d158682adeae992b0fa547

Changelog: 

Add the "default" theme to the beginning of the conversation
theme preferences.

Changes against parent 99e45113699d6b9dee918ac11cdc124dc6ea5f0b

  patched  pidgin/gtkprefs.c

-------------- next part --------------
============================================================
--- pidgin/gtkprefs.c	2ba95ea22f14852da8a4eb4718c53d0c62d6dcf5
+++ pidgin/gtkprefs.c	663f17284a26a14fb771eb5daf6faf6807664580
@@ -573,6 +573,11 @@ prefs_themes_refresh(void)
 
 	/* 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);


More information about the Commits mailing list