chore: update libcosmic

This commit is contained in:
Vukašin Vojinović 2026-04-04 17:50:25 +02:00 committed by Jacob Kauffmann
parent 09c4d04b49
commit 96ce377ebf
28 changed files with 729 additions and 960 deletions

View file

@ -40,7 +40,7 @@ pub struct Section<Message> {
pub search_ignore: bool,
}
impl<Message: 'static> Default for Section<Message> {
impl<Message: Clone + 'static> Default for Section<Message> {
fn default() -> Self {
Self {
title: String::new(),
@ -120,7 +120,7 @@ impl<Message: Clone + 'static> Section<Message> {
#[must_use]
#[inline]
pub fn unimplemented<'a, Message: 'static>(
pub fn unimplemented<'a, Message: Clone + 'static>(
_binder: &'a Binder<Message>,
_page: &'a dyn Page<Message>,
_section: &'a Section<Message>,