aboutsummaryrefslogtreecommitdiff
path: root/src/Interface
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2022-02-05 13:14:44 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2022-02-05 13:14:44 +0300
commit549cefdd90b06209f8bc3ec9d220f68ebebec823 (patch)
tree8788485a4949c31a57a32769f508d1f7db2785bd /src/Interface
parent5a45c59b92c885cf20c5c69b1769273f3a124530 (diff)
Edit percentage presentation
Diffstat (limited to 'src/Interface')
-rw-r--r--src/Interface/ProgressBar.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Interface/ProgressBar.cs b/src/Interface/ProgressBar.cs
index ed889f6..2e68e8b 100644
--- a/src/Interface/ProgressBar.cs
+++ b/src/Interface/ProgressBar.cs
@@ -19,7 +19,7 @@
if (percent < 100)
{
- Excel.StatusBar = $"{Message} Выполнено {percent.ToString("#.##")} %";
+ Excel.StatusBar = $"{Message} Выполнено {percent.ToString("#.#")} %";
}
else