aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2020-09-10 13:32:00 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2020-09-10 13:32:00 +0300
commiteee2ca563c712da4d8ef976238642b5247330740 (patch)
treec8a8a8a06cbcb118b3e71e43338cee67d7d9316e /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
parentc794c0c66533fc6d02563444d329b8af3d0fe482 (diff)
parent6e127075e212e66a890fe130c9b9b90953c70bbd (diff)
downloadTango-eee2ca563c712da4d8ef976238642b5247330740.tar.gz
Tango-eee2ca563c712da4d8ef976238642b5247330740.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/_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)