aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/ThreadLoading/DefaultThreadLoadingService.cs
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2023-07-19 13:50:12 +0300
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2023-07-19 13:50:12 +0300
commitf405c02e3e4649535b6d8747a43418db4b164679 (patch)
treefad2e4fb1ae4ac0fbe54733cc09ddaf9a60c4573 /Software/Visual_Studio/PPC/Tango.PPC.UI/ThreadLoading/DefaultThreadLoadingService.cs
parent754be25c42cd16c3bd478373fec20b6b3b53620a (diff)
downloadTango-f405c02e3e4649535b6d8747a43418db4b164679.tar.gz
Tango-f405c02e3e4649535b6d8747a43418db4b164679.zip
Maintenance Changes
Related Work Items: #8753
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/ThreadLoading/DefaultThreadLoadingService.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/ThreadLoading/DefaultThreadLoadingService.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ThreadLoading/DefaultThreadLoadingService.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ThreadLoading/DefaultThreadLoadingService.cs
index a6479da63..4d6a848d3 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ThreadLoading/DefaultThreadLoadingService.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ThreadLoading/DefaultThreadLoadingService.cs
@@ -3,7 +3,9 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using Tango.Core.DI;
using Tango.Integration.Operation;
+using Tango.PPC.Common.Build;
using Tango.PPC.Common.Connection;
using Tango.PPC.Common.Notifications;
using Tango.PPC.Common.Threading;
@@ -24,7 +26,8 @@ namespace Tango.PPC.UI.ThreadLoading
_notificationsProvider = notificationsProvider;
_machineProvider = machineProvider;
_dispatcher = dispatcher;
- _machineProvider.MachineOperator.ThreadLoadingStatusChanged += MachineOperator_ThreadLoadingStatusChanged;
+ if(false == TangoIOC.Default.GetInstance<IBuildProvider>().IsEureka)
+ _machineProvider.MachineOperator.ThreadLoadingStatusChanged += MachineOperator_ThreadLoadingStatusChanged;
}
private void MachineOperator_ThreadLoadingStatusChanged(object sender, PMR.ThreadLoading.StartThreadLoadingResponse e)