Add option to start over post-clone
This commit is contained in:
parent
a89f75d490
commit
04b97a463d
2 changed files with 4 additions and 1 deletions
|
|
@ -62,6 +62,7 @@
|
||||||
"<Enter>": "Process",
|
"<Enter>": "Process",
|
||||||
"<Up>": "KeyUp",
|
"<Up>": "KeyUp",
|
||||||
"<Down>": "KeyDown",
|
"<Down>": "KeyDown",
|
||||||
|
"<s>": "ScanDisks", // Start over
|
||||||
"<q>": "Quit", // Quit the application
|
"<q>": "Quit", // Quit the application
|
||||||
"<Ctrl-d>": "Quit", // Another way to quit
|
"<Ctrl-d>": "Quit", // Another way to quit
|
||||||
"<Ctrl-c>": "Quit", // Yet another way to quit
|
"<Ctrl-c>": "Quit", // Yet another way to quit
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,9 @@ impl Component for Footer {
|
||||||
| Mode::PreClone
|
| Mode::PreClone
|
||||||
| Mode::Clone
|
| Mode::Clone
|
||||||
| Mode::PostClone
|
| 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(
|
Mode::SelectDisks => String::from(
|
||||||
"(Enter) to select / / (i) to install driver / (r) to rescan / (q) to quit",
|
"(Enter) to select / / (i) to install driver / (r) to rescan / (q) to quit",
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue