From 561d57d9a2f74fd902abab482de868d9cb062239 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Wed, 4 Jun 2025 22:08:36 -0700 Subject: [PATCH] Allow returning to menu from BootSetup --- boot_diags/src/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot_diags/src/app.rs b/boot_diags/src/app.rs index 17ccb88..0d694d5 100644 --- a/boot_diags/src/app.rs +++ b/boot_diags/src/app.rs @@ -362,8 +362,8 @@ impl App { self.action_tx.send(Action::NextScreen)?; } Mode::BootSetup => { - //let new_mode = self.next_mode(); - //self.action_tx.send(Action::SetMode(new_mode))?; + let new_mode = self.next_mode(); + self.action_tx.send(Action::SetMode(new_mode))?; } _ => {} },