Skip to content

Commit

Permalink
fix: increase sleep to 50ms after a Tab
Browse files Browse the repository at this point in the history
  • Loading branch information
sereinity committed Jun 1, 2021
1 parent 29dac15 commit c858e45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fn main() {
pass::EType::Field(x) => wtype::wtype(secret.get(&x)),
pass::EType::Tab => {
wtype::wtype_key("tab");
thread::sleep(time::Duration::from_millis(12));
thread::sleep(time::Duration::from_millis(50));
}
pass::EType::Enter => wtype::wtype_key("return"),
pass::EType::Space => wtype::wtype_key("space"),
Expand Down

0 comments on commit c858e45

Please sign in to comment.