mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-25 06:24:26 +00:00
run clippy
This commit is contained in:
parent
80cd6e516b
commit
7a98581421
|
@ -509,14 +509,12 @@ impl AppState {
|
||||||
self.focus = Focus::List;
|
self.focus = Focus::List;
|
||||||
if !self.multi_select {
|
if !self.multi_select {
|
||||||
self.selected_commands.clear()
|
self.selected_commands.clear()
|
||||||
} else {
|
} else if let Some(node) = self.get_selected_node() {
|
||||||
if let Some(node) = self.get_selected_node() {
|
|
||||||
if !node.multi_select {
|
if !node.multi_select {
|
||||||
self.selected_commands.retain(|cmd| cmd.name != node.name);
|
self.selected_commands.retain(|cmd| cmd.name != node.name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
ConfirmStatus::Confirm => self.handle_confirm_command(),
|
ConfirmStatus::Confirm => self.handle_confirm_command(),
|
||||||
ConfirmStatus::None => {}
|
ConfirmStatus::None => {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user