chore: update iced

This commit is contained in:
Ashley Wulber 2025-05-19 13:06:09 -04:00 committed by GitHub
parent b7aed0e4d6
commit 2a1af3a24f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 18 additions and 18 deletions

View file

@ -40,13 +40,12 @@ impl<'a, Message: 'static + Clone> Warning<'a, Message> {
.on_press_maybe(self.on_close);
#[cfg(not(target_os = "linux"))]
let close_button = icon::from_svg_bytes(
include_bytes!("../../res/icons/window-close-symbolic.svg")
)
.symbolic(true)
.apply(widget::button::icon)
.icon_size(16)
.on_press_maybe(self.on_close);
let close_button =
icon::from_svg_bytes(include_bytes!("../../res/icons/window-close-symbolic.svg"))
.symbolic(true)
.apply(widget::button::icon)
.icon_size(16)
.on_press_maybe(self.on_close);
widget::row::with_capacity(2)
.push(label)