From 0dcfcc8053c51231dd8dbf09948e880ad635cb0d Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Sun, 7 Feb 2010 17:15:02 +0000 Subject: [PATCH] (trunk gtk) make the debug messages easier to read in the message window. grey-on-white was just stupid. --- gtk/msgwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/msgwin.c b/gtk/msgwin.c index 0856b6382..3c22a5087 100644 --- a/gtk/msgwin.c +++ b/gtk/msgwin.c @@ -188,7 +188,7 @@ getForegroundColor( int msgLevel ) switch( msgLevel ) { case TR_MSG_DBG: - foreground = "gray"; break; + foreground = "forestgreen"; break; case TR_MSG_INF: foreground = "black"; break;