From aa5c8978f90f466c7b4f418e2ddf6f1a88ce58a0 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Wed, 27 Mar 2024 12:26:48 +0100 Subject: [PATCH] Fix merge field fill_color --- crates/egui_plot/src/items/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/egui_plot/src/items/mod.rs b/crates/egui_plot/src/items/mod.rs index 70bf227623bb..78f4560c6d35 100644 --- a/crates/egui_plot/src/items/mod.rs +++ b/crates/egui_plot/src/items/mod.rs @@ -620,7 +620,6 @@ pub struct Polygon { pub(super) name: String, pub(super) highlight: bool, pub(super) allow_hover: bool, - pub(super) fill_alpha: f32, pub(super) fill_color: Option, pub(super) style: LineStyle, id: Option, @@ -634,7 +633,6 @@ impl Polygon { name: Default::default(), highlight: false, allow_hover: true, - fill_alpha: DEFAULT_FILL_ALPHA, fill_color: None, style: LineStyle::Solid, id: None,