Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.WPF/MainWindow.Progress.cs')
-rw-r--r--UVtools.WPF/MainWindow.Progress.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/UVtools.WPF/MainWindow.Progress.cs b/UVtools.WPF/MainWindow.Progress.cs
index 6f2d304..14f5eaf 100644
--- a/UVtools.WPF/MainWindow.Progress.cs
+++ b/UVtools.WPF/MainWindow.Progress.cs
@@ -18,7 +18,7 @@ namespace UVtools.WPF
{
#region Members
public OperationProgress Progress { get; } = new();
- private Timer _progressTimer = new(200) { AutoReset = true };
+ private readonly Timer _progressTimer = new(200) { AutoReset = true };
private long _progressLastTotalSeconds;
private LogItem _progressLogItem;
private bool _isProgressVisible;