aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-04-06 09:29:59 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-04-06 09:29:59 +0300
commit5be2f6157bd390b0415de652be83687ad0d1a38b (patch)
tree4bb364fdd0c917a782ac3abb9cf567a1290c1922 /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
parent7eb4eb85766d2ab423bb53d3a4db0b7d4bb7f774 (diff)
downloadTango-5be2f6157bd390b0415de652be83687ad0d1a38b.tar.gz
Tango-5be2f6157bd390b0415de652be83687ad0d1a38b.zip
Several fixes.
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.cs4
1 files changed, 1 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 2d6ffeb04..6ef2f946b 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateManager.cs
@@ -1690,7 +1690,7 @@ namespace Tango.PPC.Common.MachineUpdate
protected virtual void UpdateProgress(String name, String message = "", bool isIntermediate = true, double progress = 0, double total = 0)
{
- InvokeUINow(() =>
+ InvokeUI(() =>
{
Status = new MachineUpdateProgress()
{
@@ -1703,8 +1703,6 @@ namespace Tango.PPC.Common.MachineUpdate
Progress?.Invoke(this, Status);
});
-
- UIHelper.DoEvents();
}
#endregion