From 291895e5ff7a64541bfe5a09ad3d57f1ce7c53f6 Mon Sep 17 00:00:00 2001 From: edouard Date: Wed, 5 Apr 2023 12:43:44 +0200 Subject: [PATCH] fix progress bar background --- gui/ui/src/theme.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/ui/src/theme.rs b/gui/ui/src/theme.rs index c58f084e..27cead64 100644 --- a/gui/ui/src/theme.rs +++ b/gui/ui/src/theme.rs @@ -808,7 +808,7 @@ impl progress_bar::StyleSheet for Theme { type Style = ProgressBar; fn appearance(&self, _style: &Self::Style) -> progress_bar::Appearance { progress_bar::Appearance { - background: iced::Color::TRANSPARENT.into(), + background: color::GREY.into(), bar: color::GREEN.into(), border_radius: 10.0, }