aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
diff options
context:
space:
mode:
authorAvi Levkovich <avi@twine-s.com>2020-09-07 11:33:53 +0300
committerAvi Levkovich <avi@twine-s.com>2020-09-07 11:33:53 +0300
commit1ea31678760a7005105fbda97edf9c93540a8b39 (patch)
treec9ab27f25b8e76d3d6ae8bd9278b8ca69a38acc5 /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
parent0d27aba5181800fb81d880e4dad16c547a0f95a2 (diff)
parent4a6dfa14bf1e7599e2b4196e71102f32f501941c (diff)
downloadTango-1ea31678760a7005105fbda97edf9c93540a8b39.tar.gz
Tango-1ea31678760a7005105fbda97edf9c93540a8b39.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)