From efcdb1a1c2d94cb8a395663ba66c72cb6ee9a867 Mon Sep 17 00:00:00 2001 From: pythops Date: Sun, 15 Sep 2024 22:33:26 +0200 Subject: [PATCH] reduce sleep time of the fuzzy thread to 30ms --- oryx-tui/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oryx-tui/src/app.rs b/oryx-tui/src/app.rs index 0e97f2d..acb1c18 100644 --- a/oryx-tui/src/app.rs +++ b/oryx-tui/src/app.rs @@ -143,7 +143,7 @@ impl App { let mut last_index = 0; let mut pattern = String::new(); loop { - thread::sleep(Duration::from_millis(100)); + thread::sleep(Duration::from_millis(30)); let packets = packets.lock().unwrap(); let mut fuzzy = fuzzy.lock().unwrap();