diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-02-12 16:53:34 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-02-12 16:53:34 +0300 |
commit | 3feab7cf5f8755b4c05a6d57aece037947b16273 (patch) | |
tree | d0225ca4f1cd72363ad69935d3a1349848a6445c /src/Interface | |
parent | 3224a8967e4b2252f25d12dcaaa7d2c4acc87875 (diff) |
Extract PriceListHeaders class
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 2e68e8b..416c7d6 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:#.#} %"; } else |