From 27769d38d254d9531f0faa32f8ed38b0f4726dfa Mon Sep 17 00:00:00 2001 From: Joscha Date: Fri, 17 Jun 2022 20:50:20 +0200 Subject: [PATCH] Decrease poll duration again --- cove-tui/src/ui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cove-tui/src/ui.rs b/cove-tui/src/ui.rs index 221dd4a..0184609 100644 --- a/cove-tui/src/ui.rs +++ b/cove-tui/src/ui.rs @@ -29,7 +29,7 @@ pub struct Ui { } impl Ui { - const POLL_DURATION: Duration = Duration::from_millis(500); + const POLL_DURATION: Duration = Duration::from_millis(100); pub async fn run(terminal: &mut Terminal) -> anyhow::Result<()> { let (event_tx, event_rx) = mpsc::unbounded_channel();