Allow returning to menu from BootSetup

This commit is contained in:
2Shirt 2025-06-04 22:08:36 -07:00
parent fe12b3c4e2
commit 561d57d9a2
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -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))?;
}
_ => {}
},