remove redundant closures

This commit is contained in:
daniel.eades 2023-11-16 17:36:21 +00:00 committed by Ashley Wulber
parent 6cb69bc63b
commit 3d81eb874f
4 changed files with 5 additions and 5 deletions

View file

@ -167,7 +167,7 @@ impl cosmic::Application for IcedWorkspacesApplet {
..button::Appearance::default()
};
cosmic::theme::iced::Button::Custom {
active: Box::new(move |theme| appearence(theme)),
active: Box::new(appearence),
hover: Box::new(move |theme| button::Appearance {
background: Some(Background::Color(
theme.current_container().component.hover.into(),
@ -184,7 +184,7 @@ impl cosmic::Application for IcedWorkspacesApplet {
..button::Appearance::default()
};
cosmic::theme::iced::Button::Custom {
active: Box::new(move |theme| appearence(theme)),
active: Box::new(appearence),
hover: Box::new(move |theme| button::Appearance {
background: Some(Background::Color(
theme.current_container().component.hover.into(),