diff options
Diffstat (limited to 'gui/action.cpp')
-rw-r--r-- | gui/action.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/action.cpp b/gui/action.cpp index f9de4e9d8..16a550ba1 100644 --- a/gui/action.cpp +++ b/gui/action.cpp @@ -1321,6 +1321,10 @@ int GUIAction::terminalcommand(std::string arg) if (simulate) { simulate_progress_bar(); operation_end(op_status); + } else if (arg == "exit") { + LOGINFO("Exiting terminal\n"); + operation_end(op_status); + page("main"); } else { command = "cd \"" + cmdpath + "\" && " + arg + " 2>&1";; LOGINFO("Actual command is: '%s'\n", command.c_str()); |