remove needless return statements
This commit is contained in:
parent
2141230229
commit
94f9879a39
2 changed files with 3 additions and 3 deletions
|
|
@ -64,7 +64,7 @@ async fn start_listening(
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
_ = output.send(WaylandUpdate::Finished).await;
|
_ = output.send(WaylandUpdate::Finished).await;
|
||||||
return State::Finished;
|
State::Finished
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -156,7 +156,7 @@ impl cosmic::Application for Power {
|
||||||
self.id_ctr += 1;
|
self.id_ctr += 1;
|
||||||
let id = window::Id(self.id_ctr);
|
let id = window::Id(self.id_ctr);
|
||||||
self.action_to_confirm = Some((id, action, COUNTDOWN_LENGTH));
|
self.action_to_confirm = Some((id, action, COUNTDOWN_LENGTH));
|
||||||
return get_layer_surface(SctkLayerSurfaceSettings {
|
get_layer_surface(SctkLayerSurfaceSettings {
|
||||||
id,
|
id,
|
||||||
keyboard_interactivity: KeyboardInteractivity::None,
|
keyboard_interactivity: KeyboardInteractivity::None,
|
||||||
anchor: Anchor::all(),
|
anchor: Anchor::all(),
|
||||||
|
|
@ -164,7 +164,7 @@ impl cosmic::Application for Power {
|
||||||
size: Some((None, None)),
|
size: Some((None, None)),
|
||||||
size_limits: Limits::NONE.min_width(1.0).min_height(1.0),
|
size_limits: Limits::NONE.min_width(1.0).min_height(1.0),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
});
|
})
|
||||||
}
|
}
|
||||||
Message::Zbus(result) => {
|
Message::Zbus(result) => {
|
||||||
if let Err(e) = result {
|
if let Err(e) = result {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue