From 1815c341aa8500d05e3f7ceeb39df0e56c7021fa Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Mon, 16 May 2022 10:37:51 -0400 Subject: [PATCH] change color of big integral fill --- src/function_entry.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/function_entry.rs b/src/function_entry.rs index 7253307..8e76b27 100644 --- a/src/function_entry.rs +++ b/src/function_entry.rs @@ -458,7 +458,8 @@ impl FunctionEntry { .cloned() .collect::>() .to_line() - .color(Color32::BLUE) + .stroke(epaint::Stroke::none()) + .color(Color32::from_rgb(4, 4, 255)) .name(&self.raw_func_str) .fill(0.0), );