Patch from DHowett to fix the transposition of background and forebround colors

Mon, 17 Dec 2007 05:29:00 +0000

author
Sean Egan <seanegan@pidgin.im>
date
Mon, 17 Dec 2007 05:29:00 +0000
changeset 21954
ffb38ad2e4d6
parent 21953
4904d97daa2b
child 21955
4014918b95fc

Patch from DHowett to fix the transposition of background and forebround colors

pidgin/gtkimhtmltoolbar.c file | annotate | diff | comparison | revisions
--- a/pidgin/gtkimhtmltoolbar.c	Sun Dec 16 21:23:56 2007 +0000
+++ b/pidgin/gtkimhtmltoolbar.c	Mon Dec 17 05:29:00 2007 +0000
@@ -1096,8 +1096,8 @@
 		{PIDGIN_STOCK_TOOLBAR_TEXT_SMALLER, do_small, &toolbar->smaller_size, _("Decrease Font Size")},
 		{"", NULL, NULL, NULL},
 		{PIDGIN_STOCK_TOOLBAR_FONT_FACE, toggle_font, &toolbar->font, _("Font Face")},
-		{PIDGIN_STOCK_TOOLBAR_FGCOLOR, toggle_bg_color, &toolbar->bgcolor, _("Background Color")},
-		{PIDGIN_STOCK_TOOLBAR_BGCOLOR, toggle_fg_color, &toolbar->fgcolor, _("Foreground Color")},
+		{PIDGIN_STOCK_TOOLBAR_BGCOLOR, toggle_bg_color, &toolbar->bgcolor, _("Background Color")},
+		{PIDGIN_STOCK_TOOLBAR_FGCOLOR, toggle_fg_color, &toolbar->fgcolor, _("Foreground Color")},
 		{"", NULL, NULL, NULL},
 		{PIDGIN_STOCK_CLEAR, clear_formatting_cb, &toolbar->clear, _("Reset Formatting")},
 		{"", NULL, NULL, NULL},

mercurial