mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-23 19:45:34 -04:00
Change errors to warnings in plots. Refs #1919
This commit is contained in:
parent
e61db57485
commit
dafbbb31bf
1 changed files with 2 additions and 2 deletions
|
|
@ -433,7 +433,7 @@ void Plot::set_user_colors(pugi::xml_node plot_node)
|
|||
col_id = model::cell_map[col_id];
|
||||
colors_[col_id] = user_rgb;
|
||||
} else {
|
||||
fatal_error(fmt::format(
|
||||
warning(fmt::format(
|
||||
"Could not find cell {} specified in plot {}", col_id, id_));
|
||||
}
|
||||
} else if (PlotColorBy::mats == color_by_) {
|
||||
|
|
@ -441,7 +441,7 @@ void Plot::set_user_colors(pugi::xml_node plot_node)
|
|||
col_id = model::material_map[col_id];
|
||||
colors_[col_id] = user_rgb;
|
||||
} else {
|
||||
fatal_error(fmt::format(
|
||||
warning(fmt::format(
|
||||
"Could not find material {} specified in plot {}", col_id, id_));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue