Skip to content

Commit

Permalink
Standardise Transferrring message across IDEs.
Browse files Browse the repository at this point in the history
  • Loading branch information
CartBlanche committed Mar 26, 2024
1 parent fb6da02 commit 3df365c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VS4Mac_Meadow_Extension/OutputLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Except
public void ReportFileProgress(string filename, int percentage)
{
if (statusMonitor is null)
statusMonitor = IdeApp.Workbench.ProgressMonitors.GetStatusProgressMonitor("File Transferring", IconId.Null, false);
statusMonitor = IdeApp.Workbench.ProgressMonitors.GetStatusProgressMonitor("File Transfer", IconId.Null, false);

if (percentage < 1)
{
statusMonitor?.BeginTask($"File Transferring: {filename}", TOTAL_PROGRESS);
statusMonitor?.BeginTask($"Transferring: {filename}", TOTAL_PROGRESS);
}

if (percentage >= 1 && percentage <= 99)
Expand Down

0 comments on commit 3df365c

Please sign in to comment.