Add Quit2 action bound to Ctrl+C

This commit is contained in:
2026-03-12 16:30:54 +01:00
parent c3886ca0cf
commit ef271c0d87
3 changed files with 14 additions and 0 deletions
+1
View File
@@ -109,6 +109,7 @@ impl App {
if let Some(action) = event_to_action(&key_event) {
match action {
Action::Quit => self.exit = true,
Action::Quit2 => self.exit = true,
Action::Esc => self.view = View::MainMenu,
_ => (),
}