From 6b638f2d7b4e4631cfba37c98c2e5f86d24f18e0 Mon Sep 17 00:00:00 2001 From: Nick Horelik Date: Fri, 9 Mar 2012 17:05:05 -0500 Subject: [PATCH] changed default plot background color back to white --- src/input_xml.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input_xml.F90 b/src/input_xml.F90 index 285e9974e4..3f74d514a6 100644 --- a/src/input_xml.F90 +++ b/src/input_xml.F90 @@ -1142,7 +1142,7 @@ contains if (size(plot_(i) % background) == 3) then pl % not_found % rgb = plot_(i) % background else if (size(plot_(i) % background) == 0) then - pl % not_found % rgb = (/ 0, 0, 0 /) + pl % not_found % rgb = (/ 255, 255, 255 /) else message = "Bad background RGB " & // "in plot " // trim(to_str(pl % id))