mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-21 12:59:41 +00:00
change to false
run clippy
This commit is contained in:
parent
692bff1627
commit
a8343155e5
|
@ -113,7 +113,7 @@ impl FloatContent for RunningCommand {
|
|||
}
|
||||
_ => {}
|
||||
}
|
||||
true
|
||||
false
|
||||
}
|
||||
/// Handle key events of the running command "window". Returns true when the "window" should be
|
||||
/// closed
|
||||
|
|
|
@ -509,11 +509,9 @@ impl AppState {
|
|||
self.focus = Focus::List;
|
||||
if !self.multi_select {
|
||||
self.selected_commands.clear()
|
||||
} else {
|
||||
if let Some(node) = self.get_selected_node() {
|
||||
if !node.multi_select {
|
||||
self.selected_commands.retain(|cmd| cmd.name != node.name);
|
||||
}
|
||||
} else if let Some(node) = self.get_selected_node() {
|
||||
if !node.multi_select {
|
||||
self.selected_commands.retain(|cmd| cmd.name != node.name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user