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
This commit is contained in:
Nick Treleaven 2009-09-28 16:24:58 +00:00
parent b897991cad
commit ed72eeefce

View File

@ -1025,7 +1025,7 @@ static void show_build_result_message(gboolean failure)
if (failure) if (failure)
{ {
msg = _("Compilation failed."); 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 msgwindow is hidden, user will want to display it to see the error */
if (! ui_prefs.msgwindow_visible) if (! ui_prefs.msgwindow_visible)
{ {