From ed72eeefce2896e533274f5b0b3061f9cda6c02e Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Mon, 28 Sep 2009 16:24:58 +0000 Subject: [PATCH] Show build 'Compilation failed' message in blue also, to distinguish it from build output. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4259 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- src/build.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build.c b/src/build.c index 38e0bdc04..26eacc68f 100644 --- a/src/build.c +++ b/src/build.c @@ -1025,7 +1025,7 @@ static void show_build_result_message(gboolean failure) if (failure) { msg = _("Compilation failed."); - msgwin_compiler_add_string(COLOR_DARK_RED, msg); + msgwin_compiler_add_string(COLOR_BLUE, msg); /* If msgwindow is hidden, user will want to display it to see the error */ if (! ui_prefs.msgwindow_visible) {