update libcosmic

This commit is contained in:
Ashley Wulber 2023-06-15 15:03:06 -04:00 committed by Ashley Wulber
parent 61d527a84c
commit 5a15ef8d7f
19 changed files with 124 additions and 146 deletions

View file

@ -87,7 +87,9 @@ impl Application for Notifications {
fn subscription(&self) -> Subscription<Message> {
Subscription::batch(vec![
self.applet_helper.theme_subscription(0).map(Message::Theme),
self.timeline.as_subscription().map(Message::Frame),
self.timeline
.as_subscription()
.map(|(_, now)| Message::Frame(now)),
])
}