remove redundant closures
This commit is contained in:
parent
6cb69bc63b
commit
3d81eb874f
4 changed files with 5 additions and 5 deletions
|
|
@ -956,7 +956,7 @@ impl cosmic::Application for CosmicAppList {
|
|||
}
|
||||
})
|
||||
.on_motion(if self.dnd_offer.is_some() {
|
||||
|x, y| Message::DndMotion(x, y)
|
||||
Message::DndMotion
|
||||
} else {
|
||||
|_, _| Message::Ignore
|
||||
})
|
||||
|
|
|
|||
|
|
@ -797,7 +797,7 @@ impl cosmic::Application for CosmicNetworkApplet {
|
|||
}
|
||||
|
||||
fn subscription(&self) -> Subscription<Message> {
|
||||
let network_sub = network_manager_subscription(0).map(|e| Message::NetworkManagerEvent(e));
|
||||
let network_sub = network_manager_subscription(0).map(Message::NetworkManagerEvent);
|
||||
let timeline = self
|
||||
.timeline
|
||||
.as_subscription()
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ async fn start_listening(
|
|||
if let Ok(ActiveConnectionState::Deactivated) = next
|
||||
.get()
|
||||
.await
|
||||
.map(|p| ActiveConnectionState::from(p))
|
||||
.map(ActiveConnectionState::from)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue