From 91c120e3e2a672933eeb8b99e60cc7e3673488bd Mon Sep 17 00:00:00 2001 From: "Marco Cadetg (aider)" Date: Fri, 9 May 2025 15:10:19 +0200 Subject: [PATCH] fix: Update TUI data more frequently --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index bef4a5b..12ed1fc 100644 --- a/src/app.rs +++ b/src/app.rs @@ -114,7 +114,7 @@ impl App { // Sleep to avoid high CPU usage drop(connections); drop(monitor); - thread::sleep(std::time::Duration::from_millis(1000)); + thread::sleep(std::time::Duration::from_millis(250)); // Update data more frequently } });