feat: increase refresh rate 50ms -> 25ms

This commit is contained in:
graelo 2020-06-01 16:01:20 +02:00
parent 0ac40614a0
commit 45d84dc646

View file

@ -368,7 +368,7 @@ impl<'a> Ui<'a> {
if next_key.is_none() { if next_key.is_none() {
// Nothing in the buffer. Wait for a bit... // Nothing in the buffer. Wait for a bit...
std::thread::sleep(std::time::Duration::from_millis(50)); std::thread::sleep(std::time::Duration::from_millis(25));
continue; continue;
} }