From dafbbb31bf84fb7878f74905b41fddae8a13ae13 Mon Sep 17 00:00:00 2001 From: aprilnovak Date: Tue, 7 Dec 2021 16:59:57 -0600 Subject: [PATCH] Change errors to warnings in plots. Refs #1919 --- src/plot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plot.cpp b/src/plot.cpp index 918300e09..93635a44b 100644 --- a/src/plot.cpp +++ b/src/plot.cpp @@ -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_)); } }