Add focusable input element
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Isaac Mills 2025-07-23 09:31:39 -06:00
parent 9f96bd6cd1
commit 6b340bf9dc
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
2 changed files with 1 additions and 3 deletions

@ -1 +1 @@
Subproject commit 9747c151bc39fe940f3bf82a46775c7f50b71d32 Subproject commit bdb9a4eee983055bd765d0b674468e8cd217af9d

View file

@ -22,7 +22,6 @@ pub struct App {
transition_instant: Instant, transition_instant: Instant,
selected_tab: usize, selected_tab: usize,
current_number_guess: String, current_number_guess: String,
number_guess_responses: String,
binary_search_hint: BinarySearchHint, binary_search_hint: BinarySearchHint,
tab: Tab, tab: Tab,
current_effect: Effect, current_effect: Effect,
@ -66,7 +65,6 @@ impl App {
selected_tab: 0, selected_tab: 0,
current_number_guess: String::new(), current_number_guess: String::new(),
binary_search_hint: BinarySearchHint::default(), binary_search_hint: BinarySearchHint::default(),
number_guess_responses: String::new(),
tab: Tab::Passcode, tab: Tab::Passcode,
current_effect: fx::fade_from_fg(Color::Black, (200000, Interpolation::CircIn)), current_effect: fx::fade_from_fg(Color::Black, (200000, Interpolation::CircIn)),
} }