Add option to start over post-clone

This commit is contained in:
2Shirt 2024-11-09 20:37:11 -08:00
parent a89f75d490
commit 04b97a463d
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C
2 changed files with 4 additions and 1 deletions

View file

@ -62,6 +62,7 @@
"<Enter>": "Process",
"<Up>": "KeyUp",
"<Down>": "KeyDown",
"<s>": "ScanDisks", // Start over
"<q>": "Quit", // Quit the application
"<Ctrl-d>": "Quit", // Another way to quit
"<Ctrl-c>": "Quit", // Yet another way to quit

View file

@ -62,7 +62,9 @@ impl Component for Footer {
| Mode::PreClone
| Mode::Clone
| Mode::PostClone
| Mode::SelectParts => String::from("(Enter) to select / (q) to quit"),
| Mode::SelectParts => {
String::from("(Enter) to select / (s) to start over / (q) to quit")
}
Mode::SelectDisks => String::from(
"(Enter) to select / / (i) to install driver / (r) to rescan / (q) to quit",
),