Increase input poll duration

This commit is contained in:
Joscha 2022-06-14 11:24:37 +02:00
parent 1dbc95bb81
commit 221a783858

View file

@ -29,7 +29,7 @@ pub struct Ui {
}
impl Ui {
const POLL_DURATION: Duration = Duration::from_millis(100);
const POLL_DURATION: Duration = Duration::from_millis(500);
pub async fn run(terminal: &mut Terminal) -> anyhow::Result<()> {
let (event_tx, event_rx) = mpsc::unbounded_channel();