Skip to content

Commit bcd1617

Browse files
committedMar 2, 2023
修改部分错误
1 parent 644de7d commit bcd1617

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎SvnSummaryTool/MainViewModel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ private async Task DoCalculateDiffAsync(IProgress<int> progress)
325325
entry.totalLines = val.AppendLine + val.RemoveLine;
326326
Interlocked.Increment(ref pos);
327327

328-
progress.Report((int)(((float)pos / (float)total)));
328+
progress.Report((int)(((float)pos / (float)total) * 100));
329329
});
330330
}
331331

0 commit comments

Comments
 (0)
Please sign in to comment.