From f61cdc5759235177521fbb6a39f164b9615adfc0 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Tue, 21 Nov 2023 16:40:25 -0500 Subject: [PATCH] fix: use default style so the workspaces view is not transparent --- src/main.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main.rs b/src/main.rs index 034c06b..0e90194 100644 --- a/src/main.rs +++ b/src/main.rs @@ -587,6 +587,12 @@ impl Application for App { fn core_mut(&mut self) -> &mut cosmic::app::Core { &mut self.core } + + fn style( + &self, + ) -> Option<::Style> { + Some(cosmic::theme::style::iced::Application::default()) + } } pub fn main() -> iced::Result {