fix: do not set view depth when searching

This commit is contained in:
xeruf 2024-08-29 11:54:53 +03:00
parent dd5aaf71d2
commit b974957bc9
1 changed files with 0 additions and 5 deletions

View File

@ -652,11 +652,6 @@ async fn main() -> Result<()> {
if dots > 1 { if dots > 1 {
info!("Moving up {} tasks", dots - 1) info!("Moving up {} tasks", dots - 1)
} }
} else if let Ok(depth) = slice.parse::<i8>() {
if pos != tasks.get_position_ref() {
tasks.move_to(pos.cloned());
}
tasks.set_depth(depth);
} else { } else {
let mut transform: Box<dyn Fn(&str) -> String> = Box::new(|s: &str| s.to_string()); let mut transform: Box<dyn Fn(&str) -> String> = Box::new(|s: &str| s.to_string());
if !slice.chars().any(|c| c.is_ascii_uppercase()) { if !slice.chars().any(|c| c.is_ascii_uppercase()) {