aboutsummaryrefslogtreecommitdiff
path: root/src/Interface/ProgressBar.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Interface/ProgressBar.cs')
-rw-r--r--src/Interface/ProgressBar.cs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Interface/ProgressBar.cs b/src/Interface/ProgressBar.cs
index 37f8559..f0f2985 100644
--- a/src/Interface/ProgressBar.cs
+++ b/src/Interface/ProgressBar.cs
@@ -16,11 +16,7 @@
public override void Update()
{
double percent = (++CurrentProgress / TaskWeight) * 100;
-
- if (percent < 100)
- {
- Excel.StatusBar = $"{Message} Выполнено {percent:#.#} %";
- }
+ Excel.StatusBar = $"{Message} Выполнено {percent:#.#} %";
}
}
}