From 6b340bf9dcee51b9d66e796952f782291b7dd191 Mon Sep 17 00:00:00 2001 From: Isaac Mills Date: Wed, 23 Jul 2025 09:31:39 -0600 Subject: [PATCH] Add focusable input element --- thecockpit/ratzilla | 2 +- thecockpit/src/app.rs | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/thecockpit/ratzilla b/thecockpit/ratzilla index 9747c15..bdb9a4e 160000 --- a/thecockpit/ratzilla +++ b/thecockpit/ratzilla @@ -1 +1 @@ -Subproject commit 9747c151bc39fe940f3bf82a46775c7f50b71d32 +Subproject commit bdb9a4eee983055bd765d0b674468e8cd217af9d diff --git a/thecockpit/src/app.rs b/thecockpit/src/app.rs index c08d7d6..15f75b3 100644 --- a/thecockpit/src/app.rs +++ b/thecockpit/src/app.rs @@ -22,7 +22,6 @@ pub struct App { transition_instant: Instant, selected_tab: usize, current_number_guess: String, - number_guess_responses: String, binary_search_hint: BinarySearchHint, tab: Tab, current_effect: Effect, @@ -66,7 +65,6 @@ impl App { selected_tab: 0, current_number_guess: String::new(), binary_search_hint: BinarySearchHint::default(), - number_guess_responses: String::new(), tab: Tab::Passcode, current_effect: fx::fade_from_fg(Color::Black, (200000, Interpolation::CircIn)), }