diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-02-05 13:14:44 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-02-05 13:14:44 +0300 |
commit | 549cefdd90b06209f8bc3ec9d220f68ebebec823 (patch) | |
tree | 8788485a4949c31a57a32769f508d1f7db2785bd /src/Interface | |
parent | 5a45c59b92c885cf20c5c69b1769273f3a124530 (diff) |
Edit percentage presentation
Diffstat (limited to 'src/Interface')
-rw-r--r-- | src/Interface/ProgressBar.cs | 2 |
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 |