diff --git a/DICUI.Avalonia/MainWindow.axaml.cs b/DICUI.Avalonia/MainWindow.axaml.cs index 9bfb9f4f..f1769342 100644 --- a/DICUI.Avalonia/MainWindow.axaml.cs +++ b/DICUI.Avalonia/MainWindow.axaml.cs @@ -785,7 +785,7 @@ namespace DICUI.Avalonia /// private void ProgressUpdated(object sender, FileProtection value) { - string message = $"{value.Percentage}% - {value.Filename}: {value.Protection}"; + string message = $"{value.Percentage * 100:N2}%: {value.Filename} - {value.Protection}"; this.Find("StatusLabel").Text = message; ViewModels.LoggerViewModel.VerboseLogLn(message); }