mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
wrong pointer listed for reading in RGB in <color_spec> node
This commit is contained in:
parent
5e8ac1b98a
commit
43ba6f1858
1 changed files with 2 additions and 2 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue