aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2020-09-07 12:31:50 +0300
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2020-09-07 12:31:50 +0300
commit138d78a6a4c9e93359074771b44113a57cc17c0d (patch)
tree666a7791b31cade843af194e130b6566435769da /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
parent803252a58a397711c69a905d104bb2cfe74cfc66 (diff)
parent1ea31678760a7005105fbda97edf9c93540a8b39 (diff)
downloadTango-138d78a6a4c9e93359074771b44113a57cc17c0d.tar.gz
Tango-138d78a6a4c9e93359074771b44113a57cc17c0d.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
index bbc8d93f6..4f8be0a6e 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
@@ -874,7 +874,7 @@ namespace Tango.PPC.Common.MachineUpdate
};
handler.Progress += (_, e) =>
{
- UpdateProgress("Updating Firmware", e.Message, false, e.Current, e.Total);
+ UpdateProgress("Updating Firmware", e.Message, e.IsIndeterminate, e.Current, e.Total);
};
}
else
@@ -1457,7 +1457,7 @@ namespace Tango.PPC.Common.MachineUpdate
};
handler.Progress += (_, e) =>
{
- UpdateProgress("Updating Firmware", e.Message, false, e.Current, e.Total);
+ UpdateProgress("Updating Firmware", e.Message, e.IsIndeterminate, e.Current, e.Total);
};
}
else
@@ -1550,7 +1550,7 @@ namespace Tango.PPC.Common.MachineUpdate
};
handler.Progress += (_, e) =>
{
- UpdateProgress("Updating Firmware", e.Message, false, e.Current, e.Total);
+ UpdateProgress("Updating Firmware", e.Message, e.IsIndeterminate, e.Current, e.Total);
};
}
catch (Exception ex)