From a413357b575cfcde67a534104cf692df056940f5 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 9 Apr 2021 11:47:12 -0700 Subject: [PATCH] Help users be more patient when starting a dump --- MPF/Windows/MainWindow.xaml.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/MPF/Windows/MainWindow.xaml.cs b/MPF/Windows/MainWindow.xaml.cs index f5aa5276..589f0a3f 100644 --- a/MPF/Windows/MainWindow.xaml.cs +++ b/MPF/Windows/MainWindow.xaml.cs @@ -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();