fix: use default style so the workspaces view is not transparent

This commit is contained in:
Ashley Wulber 2023-11-21 16:40:25 -05:00 committed by Ashley Wulber
parent 791441ca10
commit f61cdc5759

View file

@ -587,6 +587,12 @@ impl Application for App {
fn core_mut(&mut self) -> &mut cosmic::app::Core {
&mut self.core
}
fn style(
&self,
) -> Option<<cosmic::Theme as cosmic::iced_style::application::StyleSheet>::Style> {
Some(cosmic::theme::style::iced::Application::default())
}
}
pub fn main() -> iced::Result {