Help users be more patient when starting a dump

This commit is contained in:
Matt Nadareski
2021-04-09 11:47:12 -07:00
parent 5e283c9e80
commit a413357b57

View File

@@ -638,8 +638,12 @@ namespace MPF.Windows
DisableAllUIElements();
// Output to the label and log
StatusLabel.Content = "Beginning dumping process";
LogOutput.LogLn("Starting dumping process..");
StatusLabel.Content = "Starting dumping process... Please wait!";
LogOutput.LogLn("Starting dumping process... Please wait!");
if (this.UIOptions.Options.ToolsInSeparateWindow)
LogOutput.LogLn("Look for the separate command window for more details");
else
LogOutput.LogLn("Program outputs may be slow to populate in the log window");
// Get progress indicators
var resultProgress = new Progress<Result>();