Tweaked mouse and keyboard accept rates

This commit is contained in:
Clement Tsang 2019-12-13 02:55:25 -05:00
parent a0729d3913
commit 8c005a327b

View file

@ -127,7 +127,7 @@ fn main() -> error::Result<()> {
for event in reader { for event in reader {
match event { match event {
InputEvent::Keyboard(key) => { InputEvent::Keyboard(key) => {
if Instant::now().duration_since(keyboard_timer).as_millis() >= 10 { if Instant::now().duration_since(keyboard_timer).as_millis() >= 30 {
if tx.send(Event::KeyInput(key)).is_err() { if tx.send(Event::KeyInput(key)).is_err() {
return; return;
} }
@ -151,7 +151,7 @@ fn main() -> error::Result<()> {
if let Some(event) = reader.next() { if let Some(event) = reader.next() {
match event { match event {
InputEvent::Keyboard(key) => { InputEvent::Keyboard(key) => {
if Instant::now().duration_since(keyboard_timer).as_millis() >= 10 { if Instant::now().duration_since(keyboard_timer).as_millis() >= 30 {
if tx.send(Event::KeyInput(key)).is_err() { if tx.send(Event::KeyInput(key)).is_err() {
return; return;
} }
@ -159,7 +159,7 @@ fn main() -> error::Result<()> {
} }
} }
InputEvent::Mouse(mouse) => { InputEvent::Mouse(mouse) => {
if Instant::now().duration_since(mouse_timer).as_millis() >= 40 { if Instant::now().duration_since(mouse_timer).as_millis() >= 30 {
if tx.send(Event::MouseInput(mouse)).is_err() { if tx.send(Event::MouseInput(mouse)).is_err() {
return; return;
} }