Update libcosmic

This commit is contained in:
Lily Foster 2024-02-23 19:25:35 -05:00 committed by Jeremy Soller
parent f8da96e43e
commit 1bded07bfd
4 changed files with 569 additions and 253 deletions

View file

@ -632,7 +632,7 @@ impl cosmic::Application for App {
theme,
&cosmic::theme::Container::Background,
);
appearance.border_radius = 16.0.into();
appearance.border = iced::Border::with_radius(16.0);
appearance
},
)))
@ -696,12 +696,11 @@ impl cosmic::Application for App {
cosmic_bg_config::NAME.into(),
cosmic_bg_config::state::State::version(),
)
.map(|(_, res)| match res {
Ok(background_state) => Message::BackgroundState(background_state),
Err((errs, background_state)) => {
log::info!("errors loading background state: {:?}", errs);
Message::BackgroundState(background_state)
.map(|res| {
if !res.errors.is_empty() {
log::info!("errors loading background state: {:?}", res.errors);
}
Message::BackgroundState(res.config)
}),
subscription::channel(
TypeId::of::<HeartbeatSubscription>(),