Decrease poll duration again

This commit is contained in:
Joscha 2022-06-17 20:50:20 +02:00
parent 36e1dbfa59
commit 27769d38d2

View file

@ -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();