From cf4d2f5055ffb7fe53d78d1c300cfa5162455b06 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 25 Mar 2021 22:56:17 -0700 Subject: [PATCH] Fix typo in progress --- MPF/UserControls/LogOutput.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MPF/UserControls/LogOutput.xaml.cs b/MPF/UserControls/LogOutput.xaml.cs index 3742c995..7911c6ab 100644 --- a/MPF/UserControls/LogOutput.xaml.cs +++ b/MPF/UserControls/LogOutput.xaml.cs @@ -184,7 +184,7 @@ namespace MPF.UserControls { float percentProgress = (current / (float)total) * 100; ProgressBar.Value = percentProgress; - ProgressLabel.Text = string.Format("Scanning sectors for anit-mod string... ({0:##.##}%)", percentProgress); + ProgressLabel.Text = string.Format("Scanning sectors for anti-mod string... ({0:##.##}%)", percentProgress); } }));