gui tick every 5ms down from 25ms
parent
f69fb5163b
commit
29583447a4
|
|
@ -257,7 +257,7 @@ impl Application for Main {
|
|||
iced::Event::Keyboard(_) => Some(Message::EventOccurred(event)),
|
||||
_ => None,
|
||||
}),
|
||||
every(std::time::Duration::from_millis(25)).map(|_| Message::Tick),
|
||||
every(std::time::Duration::from_millis(5)).map(|_| Message::Tick),
|
||||
]);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
todo:
|
||||
- gui retries output until success requires changing put to return result
|
||||
- rate limiter in panic scenario
|
||||
- gotta stream keydown on more intervals
|
||||
- https://crates.io/crates/handlebars
|
||||
- learn rust; https://rust-book.cs.brown.edu/
|
||||
- gui keyboard; https://docs.rs/iced/latest/iced/keyboard/index.html
|
||||
|
|
@ -43,3 +43,5 @@ done:
|
|||
ts: Fri Mar 24 13:58:56 MDT 2023
|
||||
- todo: voice recognition substrings because fun
|
||||
ts: Fri Mar 24 13:58:56 MDT 2023
|
||||
- todo: gotta stream keydown on more intervals
|
||||
ts: Fri Mar 24 13:59:40 MDT 2023
|
||||
|
|
|
|||
Loading…
Reference in New Issue