gnome-mud r751 - in trunk: . src



Author: lharris
Date: Fri Feb 20 11:46:36 2009
New Revision: 751
URL: http://svn.gnome.org/viewvc/gnome-mud?rev=751&view=rev

Log:
Fixed copying the foreground color to the background.


Modified:
   trunk/ChangeLog
   trunk/src/mud-profile.c

Modified: trunk/src/mud-profile.c
==============================================================================
--- trunk/src/mud-profile.c	(original)
+++ trunk/src/mud-profile.c	Fri Feb 20 11:46:36 2009
@@ -174,7 +174,6 @@
 	gchar buf[512];
 	GConfClient *client;
 
-
 	client = gconf_client_get_default();
 
 	rementry = NULL;
@@ -812,9 +811,9 @@
 	mud_profile_set_foreground(to, from->preferences->Foreground.red,
 				       from->preferences->Foreground.green,
 				       from->preferences->Foreground.blue);
-	mud_profile_set_background(to, from->preferences->Foreground.red,
-				       from->preferences->Foreground.green,
-				       from->preferences->Foreground.blue);
+	mud_profile_set_background(to, from->preferences->Background.red,
+				       from->preferences->Background.green,
+				       from->preferences->Background.blue);
 	for (i = 0; i < C_MAX; i++)
 	{
 		mud_profile_set_colors(to, i, from->preferences->Colors[i].red,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]