Add forecast support
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Isaac Mills 2025-07-29 14:41:21 -06:00
parent 2c2246ae00
commit 5a96fcb4da
Signed by: fnmain
GPG key ID: B67D7410F33A0F61

View file

@ -53,6 +53,8 @@ pub fn run(grid_id: &str) {
move |event| match event.code {
KeyCode::Left => app.borrow_mut().prev_tab(),
KeyCode::Right => app.borrow_mut().next_tab(),
KeyCode::Up => app.borrow_mut().prev_item(),
KeyCode::Down => app.borrow_mut().next_item(),
KeyCode::Char(c) => app.borrow_mut().add_char_to_number_guess(c),
_ => {}
}