From 43ba6f18588b2f773cd1b86705b2b28c4ae35d1e Mon Sep 17 00:00:00 2001 From: Bryan Herman Date: Tue, 13 Aug 2013 16:40:54 -0400 Subject: [PATCH] wrong pointer listed for reading in RGB in node --- src/input_xml.F90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input_xml.F90 b/src/input_xml.F90 index f1363d85a9..b27cb2aebf 100644 --- a/src/input_xml.F90 +++ b/src/input_xml.F90 @@ -2691,7 +2691,7 @@ contains if (cell_dict % has_key(col_id)) then col_id = cell_dict % get_key(col_id) - call get_node_array(node_plot, "rgb", pl % colors(col_id) % rgb) + call get_node_array(node_col, "rgb", pl % colors(col_id) % rgb) else message = "Could not find cell " // trim(to_str(col_id)) // & " specified in plot " // trim(to_str(pl % id)) @@ -2702,7 +2702,7 @@ contains if (material_dict % has_key(col_id)) then col_id = material_dict % get_key(col_id) - call get_node_array(node_plot, "rgb", pl % colors(col_id) % rgb) + call get_node_array(node_col, "rgb", pl % colors(col_id) % rgb) else message = "Could not find material " // trim(to_str(col_id)) // & " specified in plot " // trim(to_str(pl % id))