From 59980fa1600ff5bbd930a4ea4f67d6c6e6c259fd Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 28 Mar 2021 22:25:03 -0700 Subject: [PATCH] Clear button should clear progress bar too --- MPF/UserControls/LogOutput.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MPF/UserControls/LogOutput.xaml.cs b/MPF/UserControls/LogOutput.xaml.cs index e3568679..278905b7 100644 --- a/MPF/UserControls/LogOutput.xaml.cs +++ b/MPF/UserControls/LogOutput.xaml.cs @@ -486,6 +486,7 @@ namespace MPF.UserControls private void OnClearButton(object sender, EventArgs e) { _paragraph.Inlines.Clear(); + ResetProgressBar(); } private void OnSaveButton(object sender, EventArgs e)