tty application: set shorter update interval

This commit is contained in:
Michael Sippel 2023-11-29 17:38:30 +01:00
parent 39fbae7740
commit 6a3afde29c
Signed by: senvas
GPG key ID: F96CF119C34B64A6

View file

@ -58,7 +58,7 @@ impl TTYApplication {
async fn update_loop(port: ViewPort<dyn TerminalView>) {
loop {
port.update();
async_std::task::sleep(std::time::Duration::from_millis(500)).await;
async_std::task::sleep(std::time::Duration::from_millis(50)).await;
}
}